Files
timerr/templates/management/project_list.html
T
2026-07-15 00:12:31 +05:00

2 lines
757 B
HTML

{% extends 'base.html' %}{% block content %}<h1>Проекты</h1><p>Создание, ставки и участники пока настраиваются через <a href="/django-admin/projects/project/">панель администрирования</a>.</p><table><tr><th>Компания</th><th>Проект</th><th>Участники</th><th>Состояние</th></tr>{% for project in projects %}<tr><td>{{ project.company }}</td><td>{{ project.name }}</td><td>{% for member in project.memberships.all %}{{ member.user }} — {{ member.hourly_rate }} ₽/ч{% if not forloop.last %}<br>{% endif %}{% endfor %}</td><td>{% if project.is_active %}Активен{% else %}Отключён{% endif %}</td></tr>{% endfor %}</table>{% endblock %}