{% extends "tp_base.html" %} {% load assets baseurl cache cleanhtml i18n locale progressbar search translation_project_tags common_tags %} {% get_current_language as LANGUAGE_CODE %} {% block body_id %}tpoverview{% endblock %} {% block search %}{% render_search %}{% endblock %} {% block content %}
{% if store %} {% cache settings.CACHE_TIMEOUT path_trail store.id %}

{{ project.code }} / {{ store|trail:"/" }}

{% endcache %} {% else %} {% cache settings.CACHE_TIMEOUT path_trail directory.id %}

{{ project.code }} / {{ directory|trail:"/" }}

{% endcache %} {% endif %}
{% progressbar stats stats.total.words %}
{% if table %}

{% trans "Files and Subfolders" %}

{% display_table table %}
{% endif %}
{% if action_groups %}

{% trans "Actions" %}

{% for action_group in action_groups %}
{{ action_group.group_display }}
{% endfor %}
{% endif %} {% if translation_project.description_html or project.description_html or language.description_html or can_edit %}

{% trans "Description" %}

{% if translation_project.description_html %} {{ translation_project.description_html|clean }} {% else %}

{% trans "No description set." %}

{% endif %} {% if can_edit %} {% include "admin/edit_links.html" %} {% endif %}
{% if can_edit %} {% endif %} {% if project.description_html %} {% blocktrans with project.fullname as project %}{{ project }} project information{% endblocktrans %}
{{ project.description_html|clean }}
{% endif %} {% if language.description_html %} {% blocktrans with language.name as language %}{{ language }} language information{% endblocktrans %}
{{ language.description_html|clean }}
{% endif %}
{% endif %}
{% include "translation_project/fileop_forms.html" %}
{% 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 %}