{% extends 'base.html' %}{% block content %}
Создание, ставки и участники пока настраиваются через панель администрирования.
| Компания | Проект | Участники | Состояние |
|---|---|---|---|
| {{ project.company }} | {{ project.name }} | {% for member in project.memberships.all %}{{ member.user }} — {{ member.hourly_rate }} ₽/ч{% if not forloop.last %} {% endif %}{% endfor %} | {% if project.is_active %}Активен{% else %}Отключён{% endif %} |