{% extends "tp_base.html" %} {% load url from future %} {% load assets baseurl cache cleanhtml i18n locale progressbar search translation_project_tags goal_tags common_tags profile_tags %} {% get_current_language as LANGUAGE_CODE %} {% block body_id %}tpoverview{% endblock %} {% block search %}{% render_search %}{% endblock %} {% block content %}

{% if goal %} {% cache settings.CACHE_TIMEOUT path_with_goal_trail path_obj.id goal.pk %} {{ project.code }} / {{ goal.name }} / {{ path_obj|goal_trail:goal }} {% endcache %} {% else %} {% cache settings.CACHE_TIMEOUT path_trail path_obj.id %} {{ project.code }} / {{ path_obj|trail:"/" }} {% endcache %} {% endif %} {% trans "Show tags" %}

{% progressbar stats stats.total.words %}
{% if can_edit and add_tag_form %} {% trans "Add tag" %} {% endif %}
{% if table %}
{% display_table table %}
{% endif %}
{% if action_groups %}

{% trans "Actions" %}

{% for action_group in action_groups %}
{{ action_group.group_display }}
{% endfor %} {% if action_output %}

{{ action_output }}

{% endif %}
{% endif %} {% if description or project.description or language.description or can_edit %}

{% trans "Description" %}

{% if description %} {{ description }} {% else %}

{% trans "No description set." %}

{% endif %} {% if can_edit %} {% include "admin/edit_links.html" %} {% endif %}
{% if can_edit %} {% endif %} {% if project.description %} {% blocktrans with project.fullname as project %}{{ project }} project information{% endblocktrans %}
{{ project.description }}
{% endif %} {% if language.description %} {% blocktrans with language.name as language %}{{ language }} language information{% endblocktrans %}
{{ language.description }}
{% endif %}
{% endif %}
{% if upload_form %} {% endif %} {% if can_edit and add_tag_form %} {% endif %} {% endblock content %} {% block postcontent %} {% include "top_contributers_table.html" %} {% endblock postcontent %} {% block scripts_extra %} {{ block.super }} {% if user.is_superuser or request.permissions.administrate %} {% assets "js_admin" %} {% endassets %} {% endif %} {% endblock %}