14 lines
345 B
HTML
14 lines
345 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}categories/view/{{ category.name }}{% endblock %}
|
|
|
|
{% block content %}
|
|
<h3>{{ category.name }}</h3>
|
|
<div class="grid">
|
|
{% for file in files %}
|
|
<a href="{{ url_for('files.preview_file', id=file.id) }}">{{ file.filename }}</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %}
|
|
|