main_window.html 523 B

123456789101112131415161718192021
  1. {% extends 'base.html' %}
  2. {% block body %}
  3. <div class="data">
  4. <style scoped>
  5. a.reload{
  6. display: none;
  7. }
  8. </style>
  9. <a class="reload" href="{{ this_url }}"></a>
  10. <div class="reload-here">{{ body_text|safe }}</div>
  11. </div>
  12. <script>
  13. $(document).ready(function(){
  14. $("body").on("click", "a.rapid-submit-form", function(event){
  15. event.preventDefault();
  16. $(this).closest("form").submit();
  17. });
  18. });
  19. </script>
  20. {% endblock %}