{% load i18n %}
{% load ifsetting_tag %}
{% if user.is_authenticated %}
{{ user }}
Account
{% trans "Profile" %}
{% trans "Notices" %}{% if notice_unseen_count %} ({{ notice_unseen_count }}){% endif %}
{% if user.is_staff %}
Admin
{% endif %}
Log Out
{% else %}
Log In
{% ifsetting ACCOUNT_OPEN_SIGNUP %}
Sign Up
{% endifsetting %}
{% endif %}