first pass at seeing if path exists

This commit is contained in:
2021-01-10 16:11:24 +11:00
parent 0d7fe03e5a
commit 1afb794bb8
4 changed files with 53 additions and 0 deletions

13
templates/photos.html Normal file
View File

@@ -0,0 +1,13 @@
{% extends "base.html" %} {% block main_content %}
<div class="container">
<h3 class="offset-lg-2">{{page_title}} -- {{view_path}}</h3>
<div class="row">
<table class="table table table-sm col-xl-12">
<thead><tr><th>Name</th></tr></thead><tbody>
{% for obj in objects %}
<tr><td>{{obj.name}}</td></td></tr>
{% endfor %}
</tbody></table>
</div class="row">
</div class="container">
{% endblock main_content %}