{% extends "retrieval/main/base.html" %}
{% comment %}
###########################################################################
# #
# Copyright (c) 2011 - Idiap Research Institute #
# http://www.idiap.ch/ #
# #
# See file COPYING for the license associated to this software #
# #
###########################################################################
{% endcomment %}
{% block nav-global %}
{% if user.is_authenticated %}
{% if user.is_staff %}
{% trans 'Search' %} /
{% trans 'Test' %} /
{% trans 'Users' %} /
{% trans 'Tasks' %} /
{% trans 'Configs' %} /
{% trans 'Sessions' %} /
{% trans 'Statistics' %} /
{% trans 'Example' %} /
{% trans 'Training' %} /
{% trans 'Help' %}
{% else %}
{% if perms.registration.is_expert %}
{% trans 'Search' %} /
{% trans 'Test' %} /
{% trans 'Tasks' %} /
{% trans 'Statistics' %} /
{% trans 'Example' %} /
{% trans 'Training' %} /
{% trans 'Help' %}
{% else %}
{% trans 'Search' %} /
{% trans 'Test' %} /
{% trans 'Example' %} /
{% trans 'Help' %}
{% endif %}
{% endif %}
{% else %}
{% trans 'Search' %} /
{% trans 'Example' %} /
{% trans 'Help' %}
{% endif %}
{% endblock %}