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.
 
 
 
 

20 lines
940 B

{% extends "base.html" %}
{% block title %}Личный кабинет{% endblock %}
{% block content %}
<div style="float:left;">
<h2>Личный кабинет</h2>
<a href="{% url 'customer_profile_view' %}">Реквизиты</a><br /><br />
<a href="{% url 'customer_bank_accounts_list' %}">Расчётные счета</a><br /><br />
<a href="{% url 'customer_clients_list' %}">Контрагенты</a><br /><br />
<a href="{% url 'customer_license_list' %}">Лицензии</a><br /><br />
<a href="{% url 'myauth_change_password' %}">Сменить пароль</a><br /><br />
<a href="{% url 'myauth_change_email' %}">Сменить e-mail</a><br /><br />
</div>
<div style="float:left; margin-left: 40px; border-left: 1px solid; padding-left: 20px;">
<h2>Документы</h2>
{% include "docs/docs.html" %}
</div>
{% endblock %}