forked from GNUsocial/gnu-social
97 lines
4.3 KiB
Twig
97 lines
4.3 KiB
Twig
{% extends '/stdgrid.html.twig' %}
|
|
|
|
{% block title %}{{ 'Settings' | trans }}{% endblock %}
|
|
|
|
{% block stylesheets %}
|
|
{{ parent() }}
|
|
<link rel="preload" href="{{ asset('assets/default_theme/css/pages/settings.css') }}" as="style" type="text/css">
|
|
<link rel="stylesheet" href="{{ asset('assets/default_theme/css/pages/settings.css') }}">
|
|
{% endblock stylesheets %}
|
|
|
|
{% macro settings_details_element(title, summary, id, details_content, context, details_ids) %}
|
|
{% if details_ids is null %}
|
|
{% set details_ids = [id] %}
|
|
{% endif %}
|
|
<details class="section-title-settings" {{ open_details(context.open_details_query, details_ids) }} id={{ id }}>
|
|
<summary>
|
|
<h3>
|
|
{{ title | trans }}
|
|
{{ icon('arrow-down', 'icon icon-details-open') | raw }}
|
|
</h3>
|
|
<em>
|
|
{{ summary | trans }}
|
|
</em>
|
|
</summary>
|
|
|
|
{% if details_content is instanceof('Twig\\Markup') %}
|
|
{{ details_content }}
|
|
{% else %}
|
|
{{ form(details_content) }}
|
|
{% endif %}
|
|
</details>
|
|
{% endmacro settings_details_element %}
|
|
|
|
{% macro settings_details_container(title, summary, container_id, tabs, context) %}
|
|
{% set children_ids = [container_id] %}
|
|
{% set details_content %}
|
|
<nav class='section-settings-nav'>
|
|
<ul>
|
|
{% for tab in tabs %}
|
|
<hr>
|
|
<li>
|
|
{% set content %}
|
|
{% if tab['controller'] is defined %}
|
|
{% include tab['controller']['_template'] with tab['controller'] only %}
|
|
{% else %}
|
|
{{ form(tab['form']) }}
|
|
{% endif %}
|
|
{% endset %}
|
|
{{ _self.settings_details_element(tab['title'], tab['desc'], tab['id'] ~ '-details', content, context) }}
|
|
{% set children_ids = children_ids|merge([tab['id'] ~ '-details']) %}
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</nav>
|
|
{% endset %}
|
|
{{ _self.settings_details_element(title, summary, container_id, details_content, context, children_ids) }}
|
|
{% endmacro settings_details_container %}
|
|
|
|
{% block body %}
|
|
<nav class='section-settings'>
|
|
<h2>Settings</h2>
|
|
<ul>
|
|
<li>
|
|
{% set profile_tabs = [{'title': 'Personal Info', 'desc': 'Nickname, Homepage, Bio, Self Tags and more.', 'id': 'settings-personal-info', 'form': personal_info_form}] %}
|
|
{% set profile_tabs = profile_tabs|merge(handle_event('PopulateSettingsTabs', app.request, 'profile')) %}
|
|
{{ _self.settings_details_container('Profile', 'Personal Information, Avatar and Profile', 'settings-profile-details', profile_tabs, _context) }}
|
|
</li>
|
|
<hr>
|
|
<li>
|
|
{% set muting_tabs = handle_event('PopulateSettingsTabs', app.request, 'muting') %}
|
|
{{ _self.settings_details_container('Muting', 'Blocked tags and actors', 'settings-muting-details', muting_tabs, _context) }}
|
|
</li>
|
|
<hr>
|
|
<li>
|
|
{{ _self.settings_details_element('Email', 'Set incoming and outgoing email settings', 'settings-email-details', email_form, _context) }}
|
|
</li>
|
|
<li>
|
|
{{ _self.settings_details_element('Password', 'Change current password', 'settings-password-details', password_form, _context) }}
|
|
</li>
|
|
<li>
|
|
{{ _self.settings_details_element('Language', 'Select and set language preferences', 'settings-language-details', language_form, _context) }}
|
|
</li>
|
|
<hr>
|
|
<li>
|
|
{% set colour_tabs = handle_event('PopulateSettingsTabs', app.request, 'colours') %}
|
|
{{ _self.settings_details_container('Colours', 'Customize your interface colours', 'settings-colour-details', colour_tabs, _context) }}
|
|
</li>
|
|
<hr>
|
|
<li>
|
|
{{ _self.settings_details_container('Notifications', 'Enable/disable notifications (Email, XMPP, Replies...)', 'notifications', tabbed_forms_notify, _context) }}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|