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.
49 lines
1.7 KiB
49 lines
1.7 KiB
{% extends request.is_ajax|yesno:'bajax.html,base.html' %}
|
|
{% block main %}
|
|
|
|
<ol class="breadcrumb">
|
|
<li><span class="glyphicon glyphicon-home"></span></li>
|
|
<li><a href="{% url 'accounts_list' %}">Администраторы</a></li>
|
|
<li><a href="{% url 'profile' %}">{{ user.username }}</a></li>
|
|
<li class="active">Настройки</li>
|
|
</ol>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-3">
|
|
<form action="{% url 'settings_chava_link' %}" method="post" class="thumbnail" enctype="multipart/form-data">{% csrf_token %}
|
|
|
|
{% if user.avatar %}<img alt="ava" src="{{ user.avatar.min }}"/>
|
|
{% else %}<img alt="ava" src="/static/img/user_ava.gif"/>
|
|
{% endif %}
|
|
|
|
<div class="caption">
|
|
<button type="submit" class="btn btn-primary">Сохранить</button>
|
|
<input type="file" name="avatar" class="live_review" accept="image/png, image/jpeg, image/gif">
|
|
</div>
|
|
</form>
|
|
</div>
|
|
|
|
<div class="col-sm-9">
|
|
<h3>{{ user.username|default:"<Нет ника>" }}</h3>
|
|
<ul class="nav nav-tabs">
|
|
<li class="active">
|
|
<a href="#livetab_content" data-tab-remote="{% url 'settings_chinfo_link' %}" role="tab" data-toggle="tab">
|
|
Изменить инфу о себе
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a href="#livetab_content" data-tab-remote="">
|
|
<Другое>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<div class="tab-content">
|
|
<div class="tab-pane active" id="livetab_content">
|
|
{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|