From a05a5beef018e85fdcc2e5a82e95c9d2268d10a3 Mon Sep 17 00:00:00 2001 From: iris1801 <44752281+iris1801@users.noreply.github.com> Date: Sun, 7 Sep 2025 08:32:10 +0200 Subject: [PATCH] Create templates/index.html --- templates/index.html | 392 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 392 insertions(+) create mode 100644 templates/index.html diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..41738a6 --- /dev/null +++ b/templates/index.html @@ -0,0 +1,392 @@ + + + + + + {{ project_name }} - Roadmap + + + + +
+
+

{{ project_name }}

+

Roadmap di Sviluppo

+
+ +
+
+
Progresso Generale
+
+
+
+
+ +
+ {% for milestone in milestones %} +
+
+
+
{{ milestone.title }}
+
{{ milestone.description }}
+
+ {% if milestone.status == 'completed' %} + Completato + {% elif milestone.status == 'in_progress' %} + In Corso + {% else %} + In Attesa + {% endif %} +
+
+
+ {% endfor %} +
+
+
+ + + + + + + + + + + \ No newline at end of file