Statistics
| Branch: | Tag: | Revision:

root / snf-astakos-app / astakos / im / templates / im / approval_terms.html @ fc2e00ef

History | View | Annotate | Download (683 Bytes)

1
{% extends 'im/base.html' %}
2

    
3
{% block page.title %}Approval Terms{% endblock %}
4

    
5
{% block body %}
6
    <div class='header'>
7
        <div class="mainlogo">
8
            <h1>approval terms</h1>
9
        </div>
10
    </div>
11
{{ terms }}
12

    
13
{% if form %}
14
<div class="section">
15
    <form action="{% url latest_terms %}" method="post" class="login innerlabels">{% csrf_token %}
16
                {% include "im/form_render.html" %}
17
                <input type="hidden" name="next" value="{{ next }}">
18
                <div class="form-row submit">
19
                    <input type="submit" class="submit altcol" value="SUBMIT" />
20
                </div>
21
        </form>
22
{% endif %}
23
{% endblock body %}