You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
282 B
HTML
14 lines
282 B
HTML
1 year ago
|
{% 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 %}
|