ETERNITY
PROJECT / FI
Journal
{% if current_user %}
Write
{% if current_user.role == 'admin' %}
Accounts
{% endif %}
Profile
Email
Password
{{ current_user.real_name or current_user.username }}
Log out
{% else %}
Sign in
Create account
{% endif %}
WASTELAND
{% with messages = get_flashed_messages(with_categories=true) %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endwith %} {% block content %}{% endblock %}