22 lines
431 B
HTML
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 %} |