You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
604 B
13 lines
604 B
{% load i18n bootstrap3 %}
|
|
<form role="form" action="{% url 'abonapp:passport_view' group.pk abon.username %}" method="post"> {% csrf_token %}
|
|
<div class="modal-header primary">
|
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
|
<h4 class="modal-title"><span class="glyphicon glyphicon-edit"></span>{% trans 'Passport information' %}</h4>
|
|
</div>
|
|
<div class="modal-body">
|
|
|
|
{% bootstrap_form form %}
|
|
|
|
{% bootstrap_button _('Save') button_type='submit' button_class='btn-primary' icon='floppy-disk' %}
|
|
</div>
|
|
</form>
|