{% extends "layout.html" %} {% block content %}
| Code | Name | Team | Status | Start Date | End Date | Created By | Time Entries | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ project.code }} | {{ project.name }} | {% if project.team %} {{ project.team.name }} {% else %} All Teams {% endif %} | {{ 'Active' if project.is_active else 'Inactive' }} | {{ project.start_date.strftime('%Y-%m-%d') if project.start_date else '-' }} | {{ project.end_date.strftime('%Y-%m-%d') if project.end_date else '-' }} | {{ project.created_by.username }} | {{ project.time_entries|length }} | Edit {% if g.user.role.name == 'ADMIN' and project.time_entries|length == 0 %} {% endif %} |
No projects found. Create your first project.