{% extends "orgapy/layout/skeleton.html" %} {% block menu %} {% include 'orgapy/partials/menu_notes.html' %} {% include 'orgapy/partials/menu_quotes.html' %} {% include 'orgapy/partials/menu_sheets.html' %} {% include 'orgapy/partials/menu_maps.html' %} {% endblock menu %} {% block main_content %} {% if objects %}
{% for o in objects %}
{% if o.get_class == 'note' %}  {{ o.title }} {% if o.categories.all %} {% for category in o.categories.all %} #{{category.name}} {% endfor%} {% else %} uncategorized {% endif %} {% if o.pinned %} {% endif %} {% if o.public %} {% endif %} {% elif o.get_class == 'quote' %}  {{ o.title }} {% elif o.get_class == 'sheet' %}  {{ o.title }} {% if o.public %} {% endif %}
{% else %}  {{ o.title }} {% if o.public %} {% endif %}
{% endif %}
{% endfor %}
{% include 'orgapy/partials/pagination.html' %} {% else %}

Nothing found 😔

{% endif %} {% endblock main_content %}