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.
29 lines
699 B
29 lines
699 B
{% extends 'client/base_catalog.html' %}
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
|
|
{% block bread_scrumbs %}
|
|
<div class="bread-crumbs">
|
|
<a href="/">{% trans 'Главная страница' %}</a>
|
|
<a href="/profile/">{% trans 'Личный кабинет' %}</a>
|
|
<strong>{% trans 'Настройки' %}</strong>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% block page_title %}
|
|
<div class="page-title">
|
|
<h1>{% trans 'Настройки' %}</h1>
|
|
</div>
|
|
{% endblock %}
|
|
|
|
|
|
{% block content_list %}
|
|
<form action="." method="post">
|
|
{% csrf_token %}
|
|
{{ form.as_p }}
|
|
<button type="submit">{% trans "Сохранить" %}</button>
|
|
</form>
|
|
|
|
{% endblock %}
|
|
|
|
|