From fda7315f43b02cfae3050ece68a4d7cb26a826b4 Mon Sep 17 00:00:00 2001 From: toufic ar Date: Fri, 15 May 2026 02:24:12 +0300 Subject: restructure webUI --- templates/base.html | 74 ------------------------------ templates/home.html | 66 --------------------------- templates/project.html | 119 ------------------------------------------------- templates/run.html | 19 -------- 4 files changed, 278 deletions(-) delete mode 100644 templates/base.html delete mode 100644 templates/home.html delete mode 100644 templates/project.html delete mode 100644 templates/run.html (limited to 'templates') diff --git a/templates/base.html b/templates/base.html deleted file mode 100644 index 81d6a59..0000000 --- a/templates/base.html +++ /dev/null @@ -1,74 +0,0 @@ - - - - {% block head %} - - makeshiftci{% block title %}{% endblock %} - - {% endblock %} - - {% block extrastyle %}{% endblock %} - - -
-
-

makeshiftci{% block path %}{% endblock %}

- {% block headingcontent %}{% endblock %} -
- {% block content %}{% endblock %} -
- - - diff --git a/templates/home.html b/templates/home.html deleted file mode 100644 index 20ef75a..0000000 --- a/templates/home.html +++ /dev/null @@ -1,66 +0,0 @@ -{% extends "base.html" %} {% block extrastyle %} - -{% endblock %} {% block content %} -
- {% for project in projects %} - - {% endfor %} -
-{% endblock %} - - diff --git a/templates/project.html b/templates/project.html deleted file mode 100644 index 9b0aa58..0000000 --- a/templates/project.html +++ /dev/null @@ -1,119 +0,0 @@ -{% extends "base.html" %} {% block title %}/{{ project_path }}{% endblock %} {% -block path %}/{{ project_path }}{% endblock %} -{% block extrastyle %} - -{% endblock %} {% block headingcontent %} -

{{ project.name }}

-

{{ project.url }}{{ project.cron }}

-{% endblock %} {% block content %} - -
- {% for run in runlist %} -
-

run - #{{ run.number }}{{ run.date }}

-
-

-
- {% endfor %} -
-{% endblock %} - - diff --git a/templates/run.html b/templates/run.html deleted file mode 100644 index 77f9f90..0000000 --- a/templates/run.html +++ /dev/null @@ -1,19 +0,0 @@ -{% extends "base.html" %} {% block title %}/{{ project_path }}/{{ run_number -}}{% endblock %} {% block path %}/{{ project_path }}/{{ run_number }}{% endblock -%} {% block content %} -

-
-{% for n in run %}
-
-{% endfor %} {% endblock %}
-
-
-- 
cgit v1.2.3