{% extends "base.html" %} {% load i18n %} {% block title %} {% trans "Project" %} {% endblock %} {% block content %}

{% trans "Name and surname:" %} {{ object.first_name }} {{ object.last_name }}

{% trans "Email:" %} {{ object.email }}

{% trans "Query:" %} {{ object.query }}

Files
{% if files.0 != 'There is no files' %} {% for i in files %} {{ i }}
{% endfor %}
{% trans "Download all files" %} {% else %} {{ files.0 }} {% endif %}
{% trans "Close project" %}
{% trans "Delete project" %}
{% endblock %}