forked from gergely/calendar-social
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 %}
|