carom-server/billard/templates/billard/location_detail_ajax.html
2018-02-11 10:56:44 +01:00

13 lines
334 B
HTML

{% load display_client %}
{% if location.clients.all %}
{% for cli in location.clients.all %}
{% for i in "12345678" %}
{{ cli|display_client:i }}
{% endfor %}
{% endfor %}
{% else %}
<div class="col">
<div class="alert alert-danger">Keine Tische angelegt!</div>
</div>
{% endif %}