popup_response.html 408 B

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