initial commit. displays simple hierarchy and lists of models. includes fixtures for initial data.
This commit is contained in:
13
venues/templates/venues/list.html
Normal file
13
venues/templates/venues/list.html
Normal file
@@ -0,0 +1,13 @@
|
||||
{% load bootstrap5 %}
|
||||
{% bootstrap_css %}
|
||||
{% bootstrap_javascript %}
|
||||
|
||||
<Title>Venues</Title>
|
||||
<h1>Venues</h1>
|
||||
<ol>
|
||||
{% for venue in venues %}
|
||||
<li>
|
||||
{{ venue.name }}
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ol>
|
||||
Reference in New Issue
Block a user