Rough simple status template.

This commit is contained in:
Matt
2020-05-19 17:12:07 -05:00
parent 224c84f72e
commit 5bcbe107af
2 changed files with 12 additions and 1 deletions

6
templates/list.html Normal file
View File

@ -0,0 +1,6 @@
<ul class="statuses">
{% for status in statuses %}
<li> {{ status.title }}
</li>
{% endfor %}
</ul>