{% extends "base.html" %} {% block title %}Контрагенты{% endblock %} {% block content %}

Добавление и список контрагентов

Добавить контрагента
{% for obj in page.object_list %} {% include "customer/clients/list_item.html" %} {% endfor %}
Контрагент Контактное лицо Телефон Редактировать Удалить?
{% include 'paginator.html' with url_list='customer_clients_list' %}
{% endblock %} {% block dialogs %} {% include "customer/clients/form.html" with form=client_form is_ajax="True" %}
{% csrf_token %}

Вы уверены, что хотите удалить контрагента ?

{% endblock %} {% block js %} {% include 'hbs/bank-tpl.html' %} {% endblock %}