2021-01-26 17:56:01 +00:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% block content %}
|
|
|
|
|
|
|
|
<header class="block column is-offset-one-quarter pl-1">
|
|
|
|
<h1 class="title">{% block header %}{% endblock %}</h1>
|
|
|
|
</header>
|
|
|
|
|
|
|
|
<div class="block columns">
|
|
|
|
<nav class="menu column is-one-quarter">
|
|
|
|
<h2 class="menu-label">Account</h2>
|
|
|
|
<ul class="menu-list">
|
|
|
|
<li>
|
2021-01-29 17:28:00 +00:00
|
|
|
<a href="/preferences/profile"{% if '/preferences/profile' in request.path %} class="is-active" aria-selected="true"{% endif %}>Profile</a>
|
2021-01-26 17:56:01 +00:00
|
|
|
</li>
|
|
|
|
<li>
|
2021-01-29 17:28:00 +00:00
|
|
|
<a href="/preferences/password"{% if '/preferences/password' in request.path %} class="is-active" aria-selected="true"{% endif %}>Change password</a>
|
2021-01-26 17:56:01 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
<h2 class="menu-label">Relationships</h2>
|
|
|
|
<ul class="menu-list">
|
|
|
|
<li>
|
2021-01-29 17:28:00 +00:00
|
|
|
<a href="/preferences/block"{% if '/preferences/block' in request.path %} class="is-active" aria-selected="true"{% endif %}>Blocked users</a>
|
2021-01-26 17:56:01 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
<div class="column content">
|
|
|
|
{% block panel %}{% endblock %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|