{% extends 'base.html' %}{% block content %}

Проекты

Создание, ставки и участники пока настраиваются через панель администрирования.

{% for project in projects %}{% endfor %}
КомпанияПроектУчастникиСостояние
{{ 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 %}
{% endblock %}