Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (783 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 approval_terms_form %}
14
<div class="section">
15
    <form action="{% url latest_terms %}" method="post" class="login innerlabels">{% csrf_token %}
16
                {% with approval_terms_form as form %}
17
                {% include "im/form_render.html" %}
18
                {% endwith %}
19
                <input type="hidden" name="next" value="{{ next }}">
20
                <div class="form-row submit">
21
                    <input type="submit" class="submit altcol" value="SUBMIT" />
22
                </div>
23
        </form>
24
{% endif %}
25
{% endblock body %}