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