{% extends "project_base.html" %} {% load i18n baseurl cleanhtml assets common_tags search %} {% load url from future %} {% get_current_language as LANGUAGE_CODE %} {% block title %}{{ project.name }} | {{ block.super }}{% endblock %} {% block body_id %}projectoverview{% endblock %} {% block search %}{% render_search %}{% endblock %} {% block content %}

{{ project.summary }} {% trans "Show tags" %}

{% csrf_token %}
{% display_table table %}
{% include "translation_summary_legend.html" %}
{% if project.description or can_edit %}

{% trans "Description" %}

{% if project.description %} {{ project.description }} {% else %}

{% trans "No description set." %}

{% endif %} {% if can_edit %} {% include "admin/edit_links.html" %}
{% endif %}
{% if user.is_superuser or request.permissions.administrate %} {% endif %} {% endblock content %} {% block postcontent %} {% include "top_contributers_table.html" %} {% endblock postcontent %} {% block scripts_extra %} {% if user.is_superuser or request.permissions.administrate %} {% assets "js_admin" %} {% endassets %} {% endif %} {% endblock %}