{% block extrastyle %}{% endblock %} {% block extrahead %}{% endblock %} {% load i18n %}
{% if not user.is_anonymous %}
{% trans 'Welcome,' %}
{% firstof user.first_name user.username %}
{% block userlinks %}
{% trans 'Change password' %}
/
{% trans 'Log out' %}
{% endblock %}
{% if user.is_superuser or user.get_profile.is_project_manager %}
ADD PROJECT
{% endif %}
LIST PROJECTS
{% if user.is_superuser %}
ADD PROJECT MANAGER
LIST PROJECT MANAGERS
{% endif %} {% if user.is_superuser or user.get_profile.is_project_manager %}
ADD USER
LIST USERS
{% endif %} {% if perms.codeaudit.can_see_bug %}
SEARCH BUGS
{% endif %} {% endif %}
{% block content %}{{ content }}{% endblock %}
{% if not is_popup %}
{% block branding %}{% endblock %}
{% endif %}