mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Show package architectures (if available)
This commit is contained in:
parent
a8c0deb2a2
commit
65d8f18255
1 changed files with 7 additions and 0 deletions
|
@ -157,6 +157,13 @@
|
|||
<th>{{ "Last Updated" | tr }}:</th>
|
||||
<td>{{ datetime_display(pkgbase.ModifiedTS) }}</td>
|
||||
</tr>
|
||||
{# Hide architecture for older packages for which we lack this data. #}
|
||||
{% if pkg.Arch %}
|
||||
<tr>
|
||||
<th>{{ "Architecture" | tr }}:</th>
|
||||
<td>{{ pkg.Arch }}</td>
|
||||
</tr>
|
||||
{% endif %}
|
||||
</table>
|
||||
|
||||
<script type="text/javascript" src="/static/js/copy.js"></script>
|
||||
|
|
Loading…
Add table
Reference in a new issue