{% extends "base.html" %} {% load url from future %} {% block title %} {{ note.name }} {% endblock %} {% block pagestyle %} {% endblock %} {% block pagescripts %} {% endblock %} {% block content %} back to {{ note.course.name }} {{ 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 %} Save {% endif %} So far, {{ note.thanks }} people have completely fallen in love with with these notes. {% if user.is_authenticated %} {% if already_flagged %} {% else %} {% endif %} {% if already_thanked %} {% else %} {% endif %} {% else %} {% 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 %} {{ note.text }} {% else %} {# note.static_html #} This document's content is currently unavailable. Please try again later. {% endif %} {# note.static_html #} {% endblock %}