popup_response.html 379 B

12345678910111213
  1. {% load i18n static jet_tags %}<!DOCTYPE html>
  2. <html>
  3. <head>
  4. <title>{% trans 'Popup closing...' %}</title>
  5. <script src="{% static "jet/js/build/bundle.min.js" %}"></script>
  6. </head>
  7. <body>
  8. {% jet_popup_response_data as data %}
  9. <div id="django-admin-popup-response-constants"
  10. data-popup-response="{{ data|escape }}">
  11. </div>
  12. </body>
  13. </html>