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