septastic/web/templates/stop_search_results.html
Nicholas Orlowsky 458f71530f
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled
search stops
2026-02-16 22:34:38 -05:00

12 lines
267 B
HTML

{% for stop in results %}
<a href="/stop/{{ stop.id }}"
style="display: flex;
justify-content: space-between">
<p class="line-link">[ {{ stop.name }}</p>
<p>]</p>
</a>
{% endfor %}
{% if results.len() == 0 %}
<p>No results found</p>
{% endif %}