123456789101112131415161718 |
- {% autoescape false %}
- {{ info_msg }}
- <br />
- <div id="loader" class="text-center">
- </div>
- <br />
- {{ form }}
- <script>
- $(function() {
- $(".btn-primary").click(function() {
- $("#loader").html('<div class="wobblebar-loader"></div><p> {{ 'ProcessingImportPleaseDontCloseThisWindowThisActionMayTakeLongTimePlaseWait' | get_lang }} </p>');
- });
- });
- </script>
- {% endautoescape %}
|