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
81bb12f6
Unverified
Commit
81bb12f6
authored
Oct 13, 2019
by
Jelle van der Waa
🚧
Committed by
GitHub
Oct 13, 2019
Browse files
Merge pull request #246 from jelly/reports_cleanup
Reports cleanup
parents
767feb12
10ff1df6
Changes
2
Hide whitespace changes
Inline
Side-by-side
templates/devel/index.html
View file @
81bb12f6
...
...
@@ -140,7 +140,7 @@ <h3>Package Todo Lists</h3>
title=
"View todo list: {{ todo.name }}"
>
{{ todo.name }}
</a></td>
<td>
{{ todo.created|date }}
</td>
<td>
{{ todo.creator.get_full_name }}
</td>
<td
class=
"wrap"
>
{{ todo.description|urlize }}
</td>
<td
class=
"wrap"
>
{{ todo.description|urlize
|truncatewords:"50"
}}
</td>
<td>
{{ todo.pkg_count }}
</td>
<td>
{{ todo.incomplete_count }}
</td>
</tr>
...
...
templates/devel/packages.html
View file @
81bb12f6
...
...
@@ -41,7 +41,6 @@ <h3>Filter Packages</h3>
<th>
Repo
</th>
<th>
Name
</th>
<th>
Version
</th>
<th>
Description
</th>
<th>
Last Updated
</th>
<th>
Build Date
</th>
<th>
Flag Date
</th>
...
...
@@ -52,7 +51,7 @@ <h3>Filter Packages</h3>
</thead>
<tbody>
{% for pkg in packages %}
<tr
class=
"{% cycle 'pkgr2' 'pkgr1' %} {{ pkg.arch.name }} {{ pkg.repo.name|lower }}"
>
<tr>
<td>
{{ pkg.arch.name }}
</td>
<td>
{{ pkg.repo.name|capfirst }}
</td>
<td>
{% pkg_details_link pkg %}
</td>
...
...
@@ -61,7 +60,6 @@ <h3>Filter Packages</h3>
{% else %}
<td>
{{ pkg.full_version }}
</td>
{% endif %}
<td
class=
"wrap"
>
{{ pkg.pkgdesc }}
</td>
<td>
{{ pkg.last_update|date }}
</td>
<td>
{{ pkg.build_date|date }}
</td>
<td>
{{ pkg.flag_date|date }}
</td>
...
...
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