diff --git a/app/templates/index.html b/app/templates/index.html new file mode 100644 index 0000000..ec606ec --- /dev/null +++ b/app/templates/index.html @@ -0,0 +1,55 @@ +{% extends "base.html" %} + +{% block title %}University Process Hub{% endblock %} + +{% block content %} + +
+

+ Fakultät EFI · TH Nürnberg +

+

University Process Hub

+

+ Modulares Informationssystem für Fakultätsprozesse. + Startpunkt für studentische Arbeiten und Schnittstelle für interne Dienste. +

+
+ +
+

+ Verfügbare Module +

+
+ + {% for module in modules %} +
+
+
{{ module.icon }}
+
{{ module.name }}
+
{{ module.description }}
+ {% if module.status == "active" %} + Aktiv + {% else %} + Geplant + {% endif %} +
+ {% endfor %} + +
+
+
Neues Modul
+
Erweiterbar durch studentische Arbeiten.
+
+ +
+
+ +
+ API: FastAPI + Datenbank: {{ db_mode }} + WebSocket: aktiv +
● System online
+
+ +{% endblock %} \ No newline at end of file