27 lines
653 B
HTML
27 lines
653 B
HTML
{% extends "members:base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<div>
|
|
<h3>{% trans "Confirm adding these entries?" %}</h3>
|
|
</div>
|
|
|
|
<div class="form-group">
|
|
<label>{% trans "Members" %}</label>
|
|
{{ members|safe }}
|
|
</div>
|
|
<div class="form-group">
|
|
<label>{% trans "Payments" %}</label>
|
|
{{ payments|safe }}
|
|
</div>
|
|
</div>
|
|
<form name="memberTextForm" action="/members/add_many_confirm" method="POST">{% csrf_token %}
|
|
<div>
|
|
<button type="submit" class="btn btn-primary">{% trans "Send" %}</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
{% endblock content %}
|