{% extends 'notes/base.html' %} {% load i18n %} {% load notes %} {% block extra_head %} {% endblock %} {% block title %}{{ title|safe }} | Notes | {{ block.super }}{% endblock %} {% block sidebar %} {{ block.super }} {% user_notes_list request author as all_notes %}
{% endblock %} {% block content %}
{% comment %}
Django 1.1 does not support == operator, so we can't do:
if author == request.user
{% endcomment %}
{% if author_is_user %}
{% trans "Notice" %}
{% trans "You haven't synced any notes with Snowy yet." %}
{% else %}
{% trans "Notice" %}
{% trans "This user is not sharing any notes with you." %}
{% endif %}
|