forked from GNUsocial/gnu-social
17 lines
732 B
Twig
17 lines
732 B
Twig
{% extends 'base.html.twig' %}
|
|
|
|
{% import 'cards/macros/settings.html.twig' as macros %}
|
|
|
|
{% block body %}
|
|
<nav class='section-settings'>
|
|
<h1>Settings</h1>
|
|
<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')) %}
|
|
{{ macros.settings_details_container('Profile', 'Personal Information, Avatar and Profile', 'settings-profile-details', profile_tabs, _context) }}
|
|
</li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock body %}
|