Pycloud/app/templates/view.html

9 lines
209 B
HTML

{% extends 'base.html' %}
{% block content %}
{% for file in files %}
<div>
<a href="{{ url_for('download', id=file.id)}}">| {{ file.name }}, {{ file.user.username }} |</a>
</div>
{% endfor %}
{% endblock %}