{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Sheets ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block menu %} {% include 'orgapy/partials/menu_sheets.html' %} {% endblock %} {% block main_content %} {% if groups or standalone_sheets %}
{% for group in groups %}
{{ group.title }}
    {% for sheet in group.sheet_set.all %}
  • {% include 'orgapy/partials/sheet_list_item.html' %}
  • {% endfor %}
{% endfor %} {% for sheet in standalone_sheets %}
{% include 'orgapy/partials/sheet_list_item.html' %}
{% endfor %}
{% else %}

You have no sheet.

 Create sheet
{% endif %} {% endblock main_content %}