{% extends 'base.html' %} {% load i18n %} {% block title %} {% trans "Projects administration" %} {% endblock %} {% block content %}
{% if object_list%} {% for i in object_list %}

{{ i.first_name }} {{ i.last_name }} {{ i.email }} {% if i.is_opened %} {% trans "New project!" %} {% endif %}


{% endfor %} {% else %}

{% trans "There are no projects!" %}


{% endif %}
{% endblock %}