Files
Kurt_kalendar/ht_booking/assets/views/court/show.html
2026-05-15 22:31:26 +02:00

22 lines
431 B
HTML

{% extends "base.html" %}
{% block title %}
View court: {{ item.id }}
{% endblock title %}
{% block content %}
<h1>View court: {{ item.id }}</h1>
<div class="mb-10">
<div>
<label>name: {{item.name}}</label>
</div>
<div>
<label>surface: {{item.surface}}</label>
</div>
<div>
<label>indoor: {{item.indoor}}</label>
</div>
<br />
<a href="/courts">Back to courts</a>
</div>
{% endblock content %}