search stops
Some checks failed
Create and publish a Docker image / build-and-push-image (push) Has been cancelled

This commit is contained in:
Nicholas Orlowsky 2026-02-16 22:34:38 -05:00
parent e41e8adefc
commit 458f71530f
No known key found for this signature in database
GPG key ID: A9F3BA4C0AA7A70B
8 changed files with 119 additions and 11 deletions

View file

@ -0,0 +1,12 @@
{% 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 %}