{% extends "base.html" %} {% load typogrify display note_sections staticfiles %} {% block title %}: {{ note.title }}{% endblock %} {% block content %}

{{ note.title|typogrify }}

This note is {% if note.status == '0' %}closed {% elif note.status == '1' %}open {% else %}hibernating{% endif %}
Project
{{ note.project|as_link }}
Private
{% if note.is_private %}Yes{% else %}No{% endif %}
License
{% for symbol in license.symbols %}{{ symbol }}{% endfor %}
{% with authors=note.get_all_updaters %}
Author{% if authors|length > 1 %}s{% endif %}
    {% for author in authors %}
  • {{ author|as_link }}
  • {% endfor %}
{% endwith %}
Last updated
{{ note.last_updated }} (view history)
{% if can_edit %} {% endif %}
{{ note.content|as_html }}
{% for section in sections %}{% include section|ns_template_name %}{% endfor %}
{% endblock %}