{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %}Notes ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block menu %}{% include 'orgapy/partials/menu_notes.html' %}{% endblock menu %} {% block main_content %} {% if notes %}
{% for note in notes %}
{{note.title}} {% if note.categories.all %} {% for category in note.categories.all %} #{{category.name}} {% endfor%} {% else %} uncategorized {% endif %} {% if note.pinned %} {% endif %} {% if note.public %} {% endif %}
{% endfor %}
{% else %}

You have no note.

 Create note
{% endif %} {% include 'orgapy/partials/pagination.html' with paginator=note_paginator %} {% endblock main_content %}