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.
26 lines
733 B
26 lines
733 B
{% extends "base.html" %}
|
|
|
|
{% block title %}Добавить {{ padeji.vinit }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% url url_prefix|add:'list' as url_list %}
|
|
|
|
<span class="nav">
|
|
<a class="back" href="{{ url_list }}">Вернуться к списку</a>
|
|
</span>
|
|
|
|
<h2>Добавить {{ padeji.vinit }}</h2>
|
|
|
|
<div class="div-doc-form">{% include form_template %}</div>
|
|
{% endblock %}
|
|
|
|
{% block dialogs %}
|
|
{% include "customer/clients/form.html" with form=client_form is_ajax="True" %}
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script src="{{ STATIC_URL }}js/client.commons.js"></script>
|
|
<script src="{{ STATIC_URL }}js/docs/client.form.js"></script>
|
|
|
|
{% include form_template_js %}
|
|
{% endblock %}
|
|
|