forked from gergely/calendar-social
Gergely Polonkai
1a69928241
This will make it easier to add new settings pages for e.g. privacy settings, applications, etc. later.
11 lines
284 B
HTML
11 lines
284 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
<nav>
|
|
<ul>
|
|
<li><a href="{{ url_for('edit_profile') }}">{% trans %}Edit profile{% endtrans %}</a></li>
|
|
<li><a href="{{ url_for('settings') }}">{% trans %}Settings{% endtrans %}</a></li>
|
|
</ul>
|
|
</nav>
|
|
{% endblock %}
|