2020-10-30 14:01:41 +00:00
|
|
|
<ul class="tabs tabs-transparent">
|
2020-11-02 15:29:22 +00:00
|
|
|
<li class="tab"><a href="{{ url_for('main.index') }}" target="_self"><i class="material-icons">home</i></a></li>
|
2020-10-30 14:01:41 +00:00
|
|
|
<li class="tab disabled"><i class="material-icons">navigate_next</i></li>
|
|
|
|
<li class="tab"><a{%if request.path == url_for('settings.index') %} class="active"{% endif %} href="{{ url_for('settings.index') }}" target="_self">Settings</a></li>
|
|
|
|
<li class="tab disabled"><i class="material-icons">navigate_next</i></li>
|
|
|
|
{% if request.path == url_for('settings.change_password') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('settings.change_password') }}" target="_self">Change password</a></li>
|
|
|
|
{% elif request.path == url_for('settings.edit_general_settings') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('settings.edit_general_settings') }}" target="_self">Edit general settings</a></li>
|
|
|
|
{% elif request.path == url_for('settings.edit_notification_settings') %}
|
|
|
|
<li class="tab"><a class="active" href="{{ url_for('settings.edit_notification_settings') }}" target="_self">Edit notification settings</a></li>
|
|
|
|
{% endif %}
|
|
|
|
</ul>
|