Eliseu Amaro
b3d582f665
[TWIG] Cards are now divided into blocks and macros, additional macros done, attachments page no longer inside cards directory [CARDS][Navigation] Now using macros to create section, details, and nav elements
47 lines
2.4 KiB
Twig
47 lines
2.4 KiB
Twig
{% extends '/stdgrid.html.twig' %}
|
|
|
|
{% import 'cards/macros/settings.html.twig' as macros %}
|
|
|
|
{% 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 %}
|
|
|
|
{% block body %}
|
|
<nav class='frame-section frame-section-padding'>
|
|
<h1 class="frame-section-title">Settings</h1>
|
|
<ul>
|
|
<li>
|
|
{% set profile_tabs = [{'title': 'Personal Info', 'desc': 'Nickname, Homepage, Bio and more.', 'id': 'settings-personal-info', 'form': personal_info_form}] %}
|
|
{% set profile_tabs = profile_tabs|merge(handle_event('PopulateSettingsTabs', app.request, 'profile')) %}
|
|
{{ macros.settings_details_container('Profile', 'Personal Information, Avatar and Profile', 'settings-profile-details', profile_tabs, _context) }}
|
|
</li>
|
|
<li>
|
|
{% set muting_tabs = handle_event('PopulateSettingsTabs', app.request, 'muting') %}
|
|
{{ macros.settings_details_container('Muting', 'Blocked tags and actors', 'settings-muting-details', muting_tabs, _context) }}
|
|
</li>
|
|
<li>
|
|
{{ macros.settings_details_element('Email', 'Set incoming and outgoing email settings', 'settings-email-details', email_form, _context) }}
|
|
</li>
|
|
<li>
|
|
{{ macros.settings_details_element('Password', 'Change current password', 'settings-password-details', password_form, _context) }}
|
|
</li>
|
|
<li>
|
|
{{ macros.settings_details_element('Language', 'Select and set language preferences', 'settings-language-details', language_form, _context) }}
|
|
</li>
|
|
<li>
|
|
{% set colour_tabs = handle_event('PopulateSettingsTabs', app.request, 'colours') %}
|
|
{{ macros.settings_details_container('Colours', 'Customize your interface colours', 'settings-colour-details', colour_tabs, _context) }}
|
|
</li>
|
|
<li>
|
|
{{ macros.settings_details_container('Notifications', 'Enable/disable notifications (Email, XMPP, Replies...)', 'notifications', tabbed_forms_notify, _context) }}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock body %}
|
|
|
|
{% block javascripts %}{% endblock %}
|