summaryrefslogtreecommitdiffstats
path: root/templates/packages
diff options
context:
space:
mode:
Diffstat (limited to 'templates/packages')
-rw-r--r--templates/packages/details.html14
1 files changed, 13 insertions, 1 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html
index 5c08bf1..af67ca4 100644
--- a/templates/packages/details.html
+++ b/templates/packages/details.html
@@ -124,7 +124,19 @@
{% with pkg.provides.all as provides %}{% if provides %}
<tr>
<th>Provides:</th>
- <td>{% for p in provides %}{{ p.name }}{% if p.version %}={{ p.version }}{% endif %}<br/>{% endfor %}</td>
+ <td>{% for item in provides %}{{ item }}<br/>{% endfor %}</td>
+ </tr>
+ {% endif %}{% endwith %}
+ {% with pkg.conflicts.all as conflicts %}{% if conflicts %}
+ <tr>
+ <th>Conflicts:</th>
+ <td>{% for item in conflicts %}{{ item }}<br/>{% endfor %}</td>
+ </tr>
+ {% endif %}{% endwith %}
+ {% with pkg.replaces.all as replaces %}{% if replaces %}
+ <tr>
+ <th>Replaces:</th>
+ <td>{% for item in replaces %}{{ item }}<br/>{% endfor %}</td>
</tr>
{% endif %}{% endwith %}
<tr>