{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %} {{note.title}} ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block menu %}{% include 'orgapy/partials/menu_notes.html' %}{% endblock menu %} {% block main_content %}

{{note.title}}

{% if not readonly %} {% if note.categories.all %} {% for category in note.categories.all %} #{{category.name}} {% endfor %} {% else %} uncategorized {% endif %} · {% endif %}  {{ note.date_creation | date }} {% if note.date_creation.date != note.date_modification.date %} ·  {{ note.date_modification | date }} {% endif %}
{% if note.content %}{{ note.content | safe }}{% else %}This note has no content.{% endif %}
{% endblock main_content %} {% block right_column %} {% if not readonly %}
{% endif %}
{% endblock right_column %} {% block body_scripts %} {{ block.super }} {% endblock body_scripts %}