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.
37 lines
1.1 KiB
37 lines
1.1 KiB
{% extends "base.html" %}
|
|
|
|
{% block title %}Отправка реквизитов{% endblock %}
|
|
|
|
{% block content %}
|
|
<h2>Отправка реквизитов {{ profile.get_company_name }}</h2>
|
|
|
|
{% if form.non_field_errors %}
|
|
<p class="error">{{ form.non_field_errors }}</p>
|
|
{% endif %}
|
|
|
|
<form class="profile-email-form" action="" method="post">
|
|
{% csrf_token %}
|
|
|
|
{% for hidden in form.hidden_fields %}
|
|
{{ hidden }}
|
|
{% endfor %}
|
|
|
|
{% for field in form.visible_fields %}
|
|
<div class="field">
|
|
<div style="float: left; width: 200px;">
|
|
{{ field.label_tag }}:
|
|
</div>
|
|
<div style="float: left;">
|
|
{{ field }}
|
|
{{ field.errors }}
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
{% endfor %}
|
|
|
|
<div class="buttons">
|
|
<input type="submit" name="submit" value="Отправить" />
|
|
<input type="submit" name="_cancel" value="Отмена" />
|
|
</div>
|
|
</form>
|
|
{% endblock %}
|
|
|