{% extends "orgapy/layout/skeleton.html" %} {% load static %} {% block title %}{% if document.title %}{{document.title}}{% else %}Untitled{% endif %}{% endblock title %} {% block head %} {{ block.super }} {% endblock head %} {% block column_main %}

{% if document.title %}{{document.title}}{% else %}Untitled{% endif %}

Created on {% if document.date_creation.date != document.date_modification.date %}, edited on {% endif %}
{% if document.categories.all %}{% for category in document.categories.all %}{% if not forloop.first %}, {% endif %}{{ category.name | title }}{% endfor %}{% else %}uncategorized{% endif %}
{% if document.referenced_in.all %}
{% for ref in document.referenced_in.all %}{% if not forloop.first %}, {% endif %} {{ ref.title }}{% endfor %}
{% endif %}
{% if not readonly %}
Edit Raw
{% csrf_token %} {% if document.pinned %} {% else %} {% endif %} {% if document.hidden %} {% else %} {% endif %} {% if document.public %} {% else %} {% endif %}
{% csrf_token %}
{% endif %}
{% if document.content %}{{ document.content | safe }}{% else %}This document has no content.{% endif %}
{% endblock column_main %} {% block column_side %}
Contents
{% if not readonly %}
View all ({{ document.project_set.count }})
{% if not document.readonly %}
{% for project in document.get_ongoing_projects %}
{% endfor %}
{% endif %}
{% endif %} {% endblock column_side %} {% block body_scripts %} {% endblock body_scripts %}