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.
31 lines
1.3 KiB
31 lines
1.3 KiB
{% extends "base.html" %}
|
|
{% load static my_tags %}
|
|
|
|
{% block title %}Редактировать {{ padeji.vinit }}{% endblock %}
|
|
|
|
{% block content %}
|
|
{% url url_prefix|add:'list' as url_list %}
|
|
{% url url_prefix|add:'delete' id=obj.pk as url_delete %}
|
|
|
|
<span class="nav" style="display:block; margin-bottom:3ex;">
|
|
<a class="back" href="{{ url_list }}">Вернуться к списку</a>
|
|
</span>
|
|
|
|
<h2 style="display:inline">Редактировать {{ padeji.vinit }}</h2>
|
|
|
|
<div class="clear"></div>
|
|
<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 'js/client.commons.js' %}?ver={% file_version 'js/client.commons.js' %}"></script>
|
|
<script src="{% static 'js/docs/client.form.js' %}?ver={% file_version 'js/docs/client.form.js' %}"></script>
|
|
<script src="{% static 'vendor/suggestions.jquery/dist/js/jquery.suggestions.min.js' %}"></script>
|
|
<script src="{% static 'js/client/search-external-api.js' %}?ver={% file_version 'js/client/search-external-api.js' %}"></script>
|
|
{% include 'hbs/bank-tpl.html' %}
|
|
{% include form_template_js %}
|
|
{% endblock %}
|
|
|