housekeep: TU rename - /tu routes

Change /tu to /package-maintainer

Signed-off-by: moson <moson@archlinux.org>
This commit is contained in:
moson 2023-09-10 08:49:59 +02:00
parent f540c79580
commit 148c882501
No known key found for this signature in database
GPG key ID: 4A4760AB4EE15296
13 changed files with 68 additions and 62 deletions

View file

@ -0,0 +1,21 @@
{% extends "partials/layout.html" %}
{% block pageContent %}
<div class="box">
{% include "partials/package-maintainer/proposal/details.html" %}
</div>
{% if utcnow >= voteinfo.End %}
<div class="box">
{% include "partials/package-maintainer/proposal/voters.html" %}
</div>
{% endif %}
<div class="box">
{% if error %}
<span class="status">{{ error | tr }}</span>
{% else %}
{% include "partials/package-maintainer/proposal/form.html" %}
{% endif %}
</div>
{% endblock %}