{% extends "base.html" %} {% block title %}Projects{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Projects

Manage your projects and track progress

{% for project in projects %}

{{ project.name }}

📦 {{ project.approval_status.value }}

{{ project.description }}

{% if project.path %}
📁 {{ project.path }}
{% endif %}
📊 {{ project.stages|length }} Stages
📅 {{ project.created_at.strftime('%Y-%m-%d') }}
View Board 🔧 Workbench 🔄 Git {% if project.path %} {% endif %}
{% endfor %} {% if not projects %}

No projects yet. Create your first project to get started!

{% endif %} {% endblock %} {% block extra_js %} {% endblock %}