{% extends "orgapy/skeleton.html" %} {% load static %} {% block title %}{% block subtitle %} {{note.title}} ∣ {% endblock subtitle %}{{ block.super }}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block right_column %}
{% endblock right_column %} {% block main_content %}

{{note.title}}

{% if note.categories.all %} {% for category in note.categories.all %} #{{category.name}} {% endfor %} {% else %} uncategorized {% endif %} {% if note.date_creation.date == note.date_modification.date %} Created on {{ note.date_creation | date }} {% else %} Created on {{ note.date_creation | date }}, edited on {{ note.date_modification | date }} {% endif %}

{% if note.content %}
{% if note.content %}{{ note.content | safe }}{% else %}This note has no content.{% endif %}
{% endif %} {% endblock main_content %} {% block body_scripts %} {{ block.super }} {% endblock body_scripts %}