{% extends "layout.html" %} {% block content %}

Project Management

Create New Project
{% if projects %}
{% for project in projects %} {% endfor %}
Code Name Category Team Status Start Date End Date Created By Time Entries Actions
{{ project.code }} {{ project.name }} {% if project.category %} {{ project.category.icon or '📁' }} {{ project.category.name }} {% else %} No category {% endif %} {% 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 Tasks {% if g.user.role == Role.ADMIN and project.time_entries|length == 0 %}
{% endif %}
{% else %}

No projects found. Create your first project.

{% endif %}
{% endblock %}