{% extends "base.html" %} {% load i18n %} {% load static %} {% load render_upload_form %} {% block content %} {% trans "Toggle navigation" %} {{ config.CONTEXT_LOCATION }} {% trans "Dashboard" %} (current) {% trans "Feedback" %} {% if request.user.is_authenticated and not form_disabled %} {% url 'tabbed-page' config.DEFAULT_TABBED_PAGE_NAME config.DEFAULT_TAB_NAME as next_url %} {% trans 'data' as type_label %} {% trans "Upload data" %} {% render_upload_form config.GLOBAL_DATA_SOURCE next_url type_label %} {% endif %} {% if request.user.is_authenticated and not form_disabled %} {% trans "Export data" %} {% trans "All Feedback (CSV)" %} {% trans "Location data (CSV)" %} {% endif %} {% if request.user.is_authenticated %} {% trans "Settings" %} {% blocktrans %}Your Account {{ request.user }}{% endblocktrans %} {% if request.user.is_staff %} {% trans "Administration" %} {% endif %} {% trans "Log out" %} {% endif %}