Statistics
| Branch: | Tag: | Revision:

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

History | View | Annotate | Download (701 Bytes)

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

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

    
5
{% block body %}
6
    <div class="terms-content">
7
        {{ terms|safe }}
8
    </div>
9

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