ips/pkg6depotd/templates/partials/search_results.html

33 lines
988 B
HTML
Raw Normal View History

{% if results.is_empty() %}
<div class="empty-state">
<p>No packages found.</p>
</div>
{% else %}
<div class="pkg-table-wrap">
<table class="pkg-table">
<thead>
<tr>
<th class="col-select"></th>
<th>Package</th>
<th>Publisher</th>
</tr>
</thead>
<tbody>
{% for r in &results %}
<tr>
<td class="col-select">
<input type="checkbox"
onchange="toggleP5i(this, '{{ r.publisher }}', '{{ r.fmri }}')"
aria-label="Select {{ r.name }}">
</td>
<td class="pkg-name-cell">
<a href="/ui/package/{{ r.publisher }}/{{ r.fmri_encoded }}">{{ r.name }}</a>
</td>
<td class="pkg-publisher">{{ r.publisher }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
{% endif %}