diff options
Diffstat (limited to 'templates')
-rw-r--r-- | templates/packages/details.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/packages/details.html b/templates/packages/details.html index 648b6483..099b8c69 100644 --- a/templates/packages/details.html +++ b/templates/packages/details.html @@ -38,7 +38,10 @@ </tr><tr> <th>Repository:</th> <td>{{ pkg.repo.name|capfirst }}</td> - </tr><tr> + </tr>{% if pkg.pkgname != pkg.pkgbase %}<tr> + <th>Base Package Name:</th> + <td>{{ pkg.pkgbase }}</td> + </tr>{% endif %}<tr> <th>Description:</th> <td>{% if pkg.pkgdesc %}{{ pkg.pkgdesc }}{% endif %}</td> </tr><tr> |