Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Jelle van der Waa
Archweb
Commits
18574f2f
Commit
18574f2f
authored
Sep 08, 2019
by
Jelle van der Waa
🚧
Browse files
devel: move signoff status up for more attention
parent
31fac36a
Changes
1
Hide whitespace changes
Inline
Side-by-side
templates/devel/index.html
View file @
18574f2f
...
...
@@ -45,6 +45,53 @@ <h3>My Flagged Packages</h3>
</tbody>
</table>
<h3>
Signoff Status
</h3>
<table
id=
"dash-signoffs"
class=
"results"
>
<thead>
<tr>
<th>
Name
</th>
<th>
Version
</th>
<th>
Arch
</th>
<th>
Target Repo
</th>
<th>
Last Updated
</th>
<th>
Approved
</th>
<th>
Signoffs
</th>
<th>
Packager
</th>
<th>
Maintainer
</th>
</tr>
</thead>
<tbody>
{% for group in signoffs %}
<tr>
<td>
{% pkg_details_link group.package %}
</td>
<td>
{{ group.version }}
</td>
<td>
{{ group.arch.name }}
</td>
<td>
{{ group.target_repo }}
</td>
<td>
{{ group.last_update|date }}
</td>
{% if group.specification.known_bad %}
<td
class=
"approval signoff-bad"
>
Bad
</td>
{% else %}
{% if not group.specification.enabled %}
<td
class=
"approval signoff-disabled"
>
Disabled
</td>
{% else %}
<td
class=
"approval signoff-{{ group.approved|yesno }}"
>
{{ group.approved|yesno|capfirst }}
</td>
{% endif %}
{% endif %}
<td><ul
class=
"signoff-list"
>
{% for signoff in group.signoffs %}
<li
class=
"signed-username"
title=
"Signed off by {{ signoff.user }}"
>
{{ signoff.user }}{% if signoff.revoked %} (revoked){% endif %}
</li>
{% endfor %}
</ul></td>
<td>
{{ group.packager }}
</td>
<td>
{{ group.maintainer }}
</td>
</tr>
{% empty %}
<tr
class=
"empty"
><td
colspan=
"9"
><em>
No packages you maintain or have packaged need signoffs
</em></td></tr>
{% endfor %}
</tbody>
</table>
<h3>
My Incomplete Todo List Packages
</h3>
<table
id=
"dash-mytodolist"
class=
"results"
>
...
...
@@ -103,53 +150,6 @@ <h3>Package Todo Lists</h3>
</tbody>
</table>
<h3>
Signoff Status
</h3>
<table
id=
"dash-signoffs"
class=
"results"
>
<thead>
<tr>
<th>
Name
</th>
<th>
Version
</th>
<th>
Arch
</th>
<th>
Target Repo
</th>
<th>
Last Updated
</th>
<th>
Approved
</th>
<th>
Signoffs
</th>
<th>
Packager
</th>
<th>
Maintainer
</th>
</tr>
</thead>
<tbody>
{% for group in signoffs %}
<tr>
<td>
{% pkg_details_link group.package %}
</td>
<td>
{{ group.version }}
</td>
<td>
{{ group.arch.name }}
</td>
<td>
{{ group.target_repo }}
</td>
<td>
{{ group.last_update|date }}
</td>
{% if group.specification.known_bad %}
<td
class=
"approval signoff-bad"
>
Bad
</td>
{% else %}
{% if not group.specification.enabled %}
<td
class=
"approval signoff-disabled"
>
Disabled
</td>
{% else %}
<td
class=
"approval signoff-{{ group.approved|yesno }}"
>
{{ group.approved|yesno|capfirst }}
</td>
{% endif %}
{% endif %}
<td><ul
class=
"signoff-list"
>
{% for signoff in group.signoffs %}
<li
class=
"signed-username"
title=
"Signed off by {{ signoff.user }}"
>
{{ signoff.user }}{% if signoff.revoked %} (revoked){% endif %}
</li>
{% endfor %}
</ul></td>
<td>
{{ group.packager }}
</td>
<td>
{{ group.maintainer }}
</td>
</tr>
{% empty %}
<tr
class=
"empty"
><td
colspan=
"9"
><em>
No packages you maintain or have packaged need signoffs
</em></td></tr>
{% endfor %}
</tbody>
</table>
<h3>
Developer Reports
</h3>
<ul>
{% for report in reports %}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment