Files
flask-files/files/templates/categories/index.html

14 lines
321 B
HTML

{% extends 'base.html' %}
{% block title %}categories{% endblock %}
{% block content %}
<h4>Categories</h4>
<div class="grid">
{% for category in categories %}
<a href="{{ url_for('categories.view', id=category.id) }}">{{ category.name }}</a>
{% endfor %}
</div>
{% endblock %}