This commit is contained in:
2023-09-27 21:43:47 +02:00
parent c8dd8ef4fc
commit 175e13da4f
7 changed files with 106 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
{% extends 'base.html' %}
{% block title %}Landing Page{% endblock %}
{% block content %}
<h2>All Files</h2>
<ul>
{% for file in files %}
<li>{{ file.name }}</li>
{% empty %}
<li>No files have been uploaded yet.</li>
{% endfor %}
</ul>
{% endblock %}