{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}Checklists{% endblock title %} {% block column_main %}

Checklists

{% csrf_token %}
{% if checklists %}
{% for checklist in checklists %}
{{ checklist.title }}
{% endfor %} {% include 'orgapy/partials/pagination.html' %}
{% else %}
Nothing found 😔
{% endif %} {% endblock column_main %}