oswilno/crates/oswilno-parking-space/templates/parking-spaces/single_parking_space.html

19 lines
584 B
HTML

<div>
<span class="text-sm font-medium text-white-900 truncate dark:text-black">
{{location.name}}
</span>
<span class="text-sm font-medium text-white-900 truncate dark:text-black">
{{location.number}}
</span>
<span class="text-sm font-medium text-white-900 truncate dark:text-black">
Etap {{location.stage}}
</span>
</div>
<div class="inline-flex items-center text-base font-semibold text-gray-900 dark:text-black">
{% if let Some(spot) = parking_space.spot %}
{{spot}}
{% else %}
&nbps;
{% endif %}
</div>