Verified Commit 29335a5b authored by Mattia Rizzolo's avatar Mattia Rizzolo
Browse files

Remove two templates that are not references anymore



Signed-off-by: Mattia Rizzolo's avatarMattia Rizzolo <mattia@debian.org>
parent 7aeb4c21
Pipeline #12858 failed with stage
in 5 minutes and 25 seconds
{% load nm %}
{% if progs %}
<table class="proctable tablesorter">
<thead>
<tr>
<th>Started</th>
<th>Last</th>
<th>Target</th>
<th>Applicant</th>
<th>Uid</th>
<th>Adv.</th>
{% if "m" in extras %}
<th>Manager</th>
{% endif %}
<th>Last log</th>
</tr>
</thead>
<tbody>
{% for p in progs %}
<tr>
<td>{{p.started|date:"Y-m-d"}}</td>
<td>{{p.last_change|date:"Y-m-d"}}</td>
<td>{{p.applying_for|sdesc_status}}</td>
<td><a href="{{ p.get_absolute_url }}">{{p.person}}</a></td>
<td><a href="{{ p.get_absolute_url }}">{{p.person.uid}}</a></td>
<td>
{% for a in p.advocates.all %}
<a href="{{ a.get_absolute_url }}">{{a.uid}}</a>
{% endfor %}
</td>
{% if "m" in extras %}
<td><a href="{{ p.manager.get_absolute_url }}">{{p.manager.person.uid}}</a></td>
{% endif %}
<td>
{% if p.log_last.logtext %}
{{ p.log_last.logtext }}
{% else %}
[{{p.log_last.progress|sdesc_progress}}]
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p><i>none</i></p>
{% endif %}
{% load nm %}
{% if procs %}
<table class="proctable tablesorter {{class}}">
<thead>
<tr>
<th>Appl date</th>
<th>Last change</th>
<th>Progress</th>
<th>Applying for</th>
<th>Applicant</th>
<th>Uid</th>
<th>Advocate(s)</th>
<th>Manager</th>
{% if visitor.is_admin %}
<th>FD comments</th>
{% endif %}
</tr>
</thead>
<tbody>
{% for p in procs %}
<tr tag="{{p.progress}}">
<td>{{p.started|date:"Y-m-d"}}</td>
<td>{{p.last_change|date:"Y-m-d"}}</td>
<td val="{{ p.progress|seq_progress }}"><a href="{{ p.get_absolute_url }}">{{p.progress|desc_progress}}</a></td>
<td val="{{ p.applying_for|seq_status }}">{{p.applying_for|desc_status}}</td>
<td><a href="{{ p.get_absolute_url }}">{{p.person.fullname}}</a></td>
<td><a href="{{ p.get_absolute_url }}">{{p.person.uid}}</a></td>
<td>
{% for a in p.advocates.all %}
<a href="{{ a.get_absolute_url }}">{{a.uid}}</a>{% if not forloop.last %},{% endif %}
{% endfor %}
</td>
<td>
{% if p.manager %}
<a href="{{ p.manager.get_absolute_url }}">{{p.manager.person.uid}}</a>
{% endif %}
</td>
{% if visitor.is_admin %}
<td>{{ p.person.fd_comment }}</td>
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
{% endif %}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment