snipt/snipt/snipts/templates/snipts/list-user.html

18 lines
375 B
HTML

{% extends "base.html" %}
{% load pagination_tags %}
{% block tags %}
{% include "snipts/tags-user.html" %}
{% endblock %}
{% block content %}
<section class="snipts">
{% autopaginate snipts 20 %}
{% for snipt in snipts %}
{% include "snipts/snipt-list.html" %}
{% endfor %}
{% paginate %}
</section>
{% endblock %}