upload.twig 424 B

1234567891011121314151617
  1. {% extends "templates/app.twig" %}
  2. {% block content %}
  3. <div class="page-header">
  4. <h1>Welcome to the SAIMUN 2019 Public Printing Web App</h1>
  5. </div>
  6. {% for message in messages %}
  7. {{ makeError(message[0], message[1], message[2]) | raw }}
  8. {% endfor %}
  9. <h1>File Successfully Submitted
  10. Please check the formatting by clicking <a href="{{ link }}" target="_blank">here</a></h1>
  11. {% endblock %}
  12. {% block js %}
  13. {% endblock %}