{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Project" %} {{ project.id }}: {{ project.name }} {% endblock %} {% block breadcrumbs %} {% trans "Language" %} {% endblock %} {% block page-title %} {% trans "Project" %} {{ project.id }}: {{ project.name }} {% endblock %} {% block content %}

{% trans "Description" %}

{% if project.description %} {{ project.description }} {% else %} ({% trans "No description" %}) {% endif %}

{% trans "Tables" %}

{% include "table_heading.html" %} {% for table in tables %} {% include "table_row.html" %} {% empty %} {% endfor %}
{% trans "No entries found" %}
{% endblock %}