2020-11-15 18:47:30 +01:00
|
|
|
{% extends 'layouts/app.twig' %}
|
2020-11-23 20:41:02 +01:00
|
|
|
{% import 'macros/base.twig' as m %}
|
2020-11-15 18:47:30 +01:00
|
|
|
|
2020-11-24 17:22:52 +01:00
|
|
|
{% block title %}{{ __(title|default(__('settings.settings'))) }}{% endblock %}
|
2020-11-15 18:47:30 +01:00
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="container user-settings">
|
2020-11-24 17:22:52 +01:00
|
|
|
{% block container_title %}
|
|
|
|
<h1>{{ __('settings.settings') }} <small>{{ block('title') }}</small></h1>
|
|
|
|
{% endblock %}
|
|
|
|
|
2020-11-15 18:47:30 +01:00
|
|
|
<div class="row">
|
2020-11-23 20:41:02 +01:00
|
|
|
<div class="col-md-3 settings-menu">
|
2020-11-15 18:47:30 +01:00
|
|
|
<ul class="nav nav-pills nav-stacked">
|
2020-11-24 17:27:21 +01:00
|
|
|
{% for url,title in settings_menu %}
|
2020-11-15 18:47:30 +01:00
|
|
|
<li{% if url == request.url() %} class="active"{% endif %}>
|
2020-11-24 17:27:21 +01:00
|
|
|
<a href="{{ url }}">{{ __(title) }}</a>
|
2020-11-15 18:47:30 +01:00
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2020-11-23 20:41:02 +01:00
|
|
|
<div class="col-md-9">
|
2020-11-15 18:47:30 +01:00
|
|
|
{% include 'layouts/parts/messages.twig' %}
|
|
|
|
|
2020-11-23 20:41:02 +01:00
|
|
|
{% block row_content %}
|
2020-11-24 17:22:52 +01:00
|
|
|
{{ content|raw }}
|
2020-11-23 20:41:02 +01:00
|
|
|
{% endblock %}
|
2020-11-15 18:47:30 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|