{% extends "base.html" %} {% load url from future %} {% block title %} {{ note.name }} {% endblock %} {% block pagestyle %} {% endblock %} {% block pagescripts %} {% endblock %} {% block content %}
{{ note.name }}
Tags: {% for tag in note.tags.all %} {{ tag.name }} {% endfor %} {% if user.get_profile.can_edit_items %} {% endif %}
{% if user.get_profile.can_edit_items %}
{% endif %}
So far, {{ note.thanks }} people have completely fallen in love with with these notes.
{% if user.is_authenticated %}
{% if already_flagged %} note_flag {% else %} note_flag {% endif %} note_flag
{% if already_thanked %} note_thank {% else %} note_thank {% endif %} note_thank
{% else %}
note_flag
note_thank
note_download
{% endif %}
{% if note.license %}
{{ note.license.html|safe }} {% if note.upstream_link %}{{ note.upstream_link|slice:":80" }}{% endif %}
{% endif %}
{% if pdf_controls %}
Jump to page:
{% endif %}
{% if note.static_html %}
{% else %} {# note.static_html #}
This document's content is currently unavailable. Please try again later.
{% endif %} {# note.static_html #}
{% endblock %}