carom-server/billard/templates/billard/location_detail_ajax.html

13 lines
306 B
HTML
Raw Normal View History

2017-04-27 10:35:10 +02:00
{% 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-md-12">
<div class="col-md-12 alert alert-danger">Keine Tische angelegt!</div>
</div>
{% endif %}