Files
Htmx/templates/developers/search_results.html
T

16 lines
962 B
HTML

{% if developers.is_empty() %}
<div class="px-3 py-4 text-xs text-muted-foreground text-center">No developers found matching this query</div>
{% else %}
<div class="max-h-60 overflow-y-auto space-y-0.5">
{% for dev in developers %}
<div tabindex="0"
data-id="{{ dev.id.unwrap().to_hex() }}"
data-name="{{ dev.name }}"
class="combobox-item flex items-center justify-between w-full h-9 px-2.5 rounded-lg text-xs hover:bg-accent hover:text-accent-foreground text-slate-200 cursor-pointer select-none focus:bg-accent focus:text-accent-foreground focus:outline-none transition-colors group">
<span class="font-medium text-slate-200 group-hover:text-accent-foreground">{{ dev.name }}</span>
<span class="text-[10px] text-muted-foreground/70 group-hover:text-accent-foreground/70">Select</span>
</div>
{% endfor %}
</div>
{% endif %}