17 lines
353 B
HTML
17 lines
353 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<div class="container mt-4 mb-4">
|
|
<h1>Show Index</h1>
|
|
<div class="row">
|
|
{% for show in shows %}
|
|
<div class="col">
|
|
<a href="/show/{{show.abbr}}">{{show.name}}</a>
|
|
</div>
|
|
{% if forloop.counter|divisibleby:3 %}
|
|
<div class="w-100"></div>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|