{% extends 'notes/base.html' %} {% load i18n %} {% load notes %} {% block extra_head %} {# Disable funcooker for now #} {% comment %} {% endcomment %} {% endblock %} {% block title %}{{ title|safe }} | Notes | {{ block.super }}{% endblock %} {% block sidebar %} {{ block.super }} {% user_notes_list request author as list_notes %} {% endblock %} {% block content-header %} {# Enable when we allow editing/sharing, but only when user has permission on this note #} {% comment %}
{% endcomment %} {% endblock %} {% block content %} {% if notebook or request.user != author %} {% endif %}
{# FIXME: Proper l10n for "'s" #} {% if request.user != author %}{{ author.username }}{% trans "'s" %} {% trans "Notes" %} » {% endif %}{% if notebook %}{{ notebook|safe }} » {% endif %}{{ title|safe }}

{{ title|safe }}

{{ body|safe }}
{# Disable funcooker for now #} {% comment %} {% endcomment %}
{% comment %} {% endcomment %} {% endblock %}