ips/pkg6depotd/templates/partials/search_results.html

29 lines
786 B
HTML
Raw Normal View History

{% 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 %}