{% extends "base.html" %} {% block bodyclass %}dashboard{% endblock %} {% comment %} ########################################################################### # # # Copyright (c) 2011 - Idiap Research Institute # # http://www.idiap.ch/ # # # # See file COPYING for the license associated to this software # # # ########################################################################### {% endcomment %} {% block userlinks %} {% trans 'Welcome' %} {% if user.is_authenticated %} {% if user.first_name %} {{ user.first_name|escape }} {% else %} {{ user.username }} {% endif %} / {% trans 'Log out' %} {% else %} Anonymous / {% trans 'Log in' %} {% endif %} {% endblock %} {% block sidebar_user %} {% if user.is_authenticated %}

USER INFO

{% trans 'Update profile' %} / {% trans 'Change password' %}

{% if nb_sessions %}

{% blocktrans %}You have submitted {{ nb_sessions }} evaluations.{% endblocktrans %}


{% endif %}
{% else %}

{% trans 'ALREADY REGISTERED' %}

{% trans 'Recover password' %}

{% trans 'WHY TO REGISTER' %}


  • {% trans 'Access more functionality' %}
  • {% trans 'See the training examples' %}
  • {% trans 'Provide evaluation tests' %}
{% endif %} {% endblock %}