diff options
Diffstat (limited to 'templates/packages/details.html')
-rw-r--r-- | templates/packages/details.html | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index 7314d93a..e5e62038 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -82,6 +82,16 @@ <th>License:</th> <td>{{ pkg.license }}</td> </tr><tr> + <th>Groups:</th> + {% with pkg.packagegroup_set.all as groups %} + <td>{% if groups %} + {% for g in groups %} + {{ g.name }}<br/> + {% endfor %} + {% else %}None{% endif %} + </td> + {% endwith %} + </tr><tr> <th>Maintainers:</th> {% with pkg.maintainers as maints %} <td>{% if maints %} |