diff options
| author | toufic ar <contact@toufy.me> | 2026-05-15 18:18:58 +0300 |
|---|---|---|
| committer | toufic ar <contact@toufy.me> | 2026-05-15 18:18:58 +0300 |
| commit | e05def62569358ff93691b03177abbaa9442bc53 (patch) | |
| tree | 04a057446f7b688ca1a52b0df0c1bcb399e1cf7d /web/templates/project.html | |
| parent | 4a17d522ced7e9b775570afd6ccbbbe225f957c3 (diff) | |
| download | makeshiftci-e05def62569358ff93691b03177abbaa9442bc53.tar.gz makeshiftci-e05def62569358ff93691b03177abbaa9442bc53.zip | |
repo branch support, a little webUI polishing
Diffstat (limited to 'web/templates/project.html')
| -rw-r--r-- | web/templates/project.html | 27 |
1 files changed, 21 insertions, 6 deletions
diff --git a/web/templates/project.html b/web/templates/project.html index 9b0aa58..7e72a48 100644 --- a/web/templates/project.html +++ b/web/templates/project.html @@ -82,15 +82,28 @@ block path %}/<a href="/{{ project_path }}">{{ project_path }}</a>{% endblock %} ><a href="{{ project.url }}" target="_blank" - class="heading-url" - >{{ project.url }}</a - ><a + style="text-decoration: none" + ><span class="heading-url">{{ project.url }}</span + ><span style="text-decoration: none; font-weight: normal">::</span>{% if + project.branch %}<span + style=" + color: var(--orange); + text-decoration: none; + font-weight: bolder; + font-style: italic; + " + >{{ project.branch }}</span + >{% endif %}</a + > + {% if project.cron %} + <a href="https://crontab.guru/#{{ project.cron }}" target="_blank" class="heading-cron" >{{ project.cron }}</a - ></h4 -> + > + {% endif %} +</h4> {% endblock %} {% block content %} <div class="fullbody"> @@ -104,7 +117,9 @@ block path %}/<a href="/{{ project_path }}">{{ project_path }}</a>{% endblock %} >#{{ run.number }}</a ></span ></span - ><span class="rundate">{{ run.date }}</span></h3 + ><span class="rundate"> + {% if not run.date %} no date {% else %} {{ run.date }} {% endif %} + </span></h3 > <hr style="margin: 5px" /> <h4 |
