{% extends "orgapy/layout/skeleton.html" %} {% block main_content %} {% include 'orgapy/partials/searchbar.html' %}
{% 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' %} {% endblock main_content %}