~alcinnz/bureaucromancy

ref: 3704ec294d638ec8bff7ac4cb1480a35930f4e23 bureaucromancy/tpl/submit.html -rw-r--r-- 448 bytes
3704ec29 — Adrian Cochrane Refine internationalization infrastructure & gather strings. 1 year, 1 day 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 -%}