All checks were successful
Create and publish a Docker image / build-and-push-image (push) Successful in 39s
12 lines
267 B
HTML
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 %}
|