Blame view

management/templates/template_preview_form.html 334 Bytes
janek37 authored
1
{% load i18n %}
janek37 authored
2
3
<div id="preview-params">
    {{ form.as_p }}
janek37 authored
4
5
6
7
    {% if gender_form %}{{ gender_form.as_p }}{% endif %}
    {% for attr_form in attr_forms %}
        {{ attr_form.as_p }}
    {% endfor %}
janek37 authored
8
    <p>
janek37 authored
9
        <button type="button" id="load-preview">{% trans 'Show' %}</button>
janek37 authored
10
11
12
    </p>
</div>
<div id="preview-table"></div>