~alcinnz/bureaucromancy

ref: c50beaf39632622f93f4c394b46a0167a7859f23 bureaucromancy/tpl/submit.html -rw-r--r-- 448 bytes
c50beaf3 — Adrian Cochrane Start integrating internationalization infrastructure! 11 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{% extends "base.html" %}

{%- block main -%}<section>
  <div>{{ input.description }}</div>
  <hr />
  {% if isFormValid %}
  <!-- TODO: Internationalize! -->
  <p><a href="_{{Q}}">Upload</a> to
    <code>{{ input.form.action|default(form.action) }}
        ({{ input.form.method|default(form.method) }})</code></p>
  {% else %}
  <p>Please correct errors listed in sidebar before submitting this form!</p>
  {% endif %}
</section>{%- endblock -%}