import_moodle.html.twig 387 B

123456789101112131415161718
  1. {% autoescape false %}
  2. {{ info_msg }}
  3. <br />
  4. <div id="loader" class="text-center">
  5. </div>
  6. <br />
  7. {{ form }}
  8. <script>
  9. $(function() {
  10. $(".btn-primary").click(function() {
  11. $("#loader").html('<div class="wobblebar-loader"></div><p> {{ 'ProcessingImportPleaseDontCloseThisWindowThisActionMayTakeLongTimePlaseWait' | get_lang }} </p>');
  12. });
  13. });
  14. </script>
  15. {% endautoescape %}