mirror of
https://codeberg.org/Toasterson/ips.git
synced 2026-04-10 21:30:41 +00:00
29 lines
786 B
HTML
29 lines
786 B
HTML
|
|
{% if results.is_empty() %}
|
||
|
|
<p>No packages found.</p>
|
||
|
|
{% else %}
|
||
|
|
<table class="packages" role="grid">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<th style="width: 40px;"></th>
|
||
|
|
<th>Package</th>
|
||
|
|
<th>Publisher</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{% for r in &results %}
|
||
|
|
<tr>
|
||
|
|
<td>
|
||
|
|
<input type="checkbox"
|
||
|
|
onchange="toggleP5i(this, '{{ r.publisher }}', '{{ r.fmri }}')"
|
||
|
|
aria-label="Select {{ r.name }}">
|
||
|
|
</td>
|
||
|
|
<td class="pkg-name">
|
||
|
|
<a href="/ui/package/{{ r.publisher }}/{{ r.fmri_encoded }}">{{ r.name }}</a>
|
||
|
|
</td>
|
||
|
|
<td>{{ r.publisher }}</td>
|
||
|
|
</tr>
|
||
|
|
{% endfor %}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
{% endif %}
|