Files
mabac/abac/templates/landing_page.html
2023-09-27 21:43:47 +02:00

14 lines
282 B
HTML

{% 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 %}