Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Mattia Rizzolo
nm.debian.org
Commits
b5c96805
Verified
Commit
b5c96805
authored
Jul 10, 2018
by
Mattia Rizzolo
Browse files
Remove two templates that are not references anymore
Signed-off-by:
Mattia Rizzolo
<
mattia@debian.org
>
parent
5ef438d8
Pipeline
#12859
passed with stage
in 4 minutes and 12 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
process/templates/process/process_table.html
deleted
100644 → 0
View file @
5ef438d8
{% 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 %}
public/templates/public/process_table.html
deleted
100644 → 0
View file @
5ef438d8
{% 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 %}
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