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.
 
 
 
 

21 lines
618 B

{% extends "base.html" %}
{% block title %}Отправка документа{% endblock %}
{% block content %}
{% url url_prefix|add:'list' as url_list %}
<span class="nav" style="display:block; margin-bottom:3ex;">
<a class="back" href="{{ url_list }}">Вернуться к списку</a>
</span>
<h2 style="display:inline">Отправка документа</h2>
{% if not is_ajax %}
{% if form.non_field_errors %}<p class="error">{{ form.non_field_errors }}</p>{% endif %}
{% endif %}
<div class="clear"></div>
{% include form_template %}
{% endblock %}