{% extends "base.html" %} {% load url from future %} {% load compress %} {% block title %} {{ note.name }} {% endblock %} {% block pagestyle %} {% compress css %} {% endcompress %} {% endblock %} {% block pagescripts %} {% compress js %} {% endcompress %} {% endblock %} {% block raw_content %}
{{ note.name }} {% if user.is_authenticated %} {% if already_thanked %} {% else %} {% endif %} {% else %} {% endif %} {% if user.is_authenticated %} {% if already_flagged %} {% else %} {% endif %} {% else %} {% endif %} {% if user.is_authenticated %} {% else %} {% endif %} {% if user.get_profile.can_edit_items and note.user != user %} {% endif %} {% if note.user == request.user %}    {% endif %} {% if note.license %} {{ note.license.html|safe }} {% if note.upstream_link %}{{ note.upstream_link|slice:":80" }}{% endif %} {% endif %}
{% if note.category %}
{{ note.get_category_display }}
{% endif %}
Tags: {% if note.tags.all %} {% for tag in note.tags.all %} {{ tag.name }}{% if not forloop.last %}, {% endif %} {% endfor %} {% else %} (none defined yet) {% endif %}
×

Edit this note's tags

×

Edit Your Note

{% csrf_token %} {{ note_delete_form }}
{% csrf_token %}
{% with note_edit_form.name as field %} {{ field.errors|safe }} {{ field }}

{{ field.help_text }}

{% endwith %}
{% with note_edit_form.tags as field %} {{ field.errors|safe }} {{ field }}

{{ field.help_text }}

{% endwith %}
Note
Key Terms & Definitions
Quiz Questions
{% if show_note_container %} {% include 'notes/note_detail.html' %} {% endif %} {% if show_keywords %} {% include 'notes/note_keywords.html' %} {% endif %} {% if show_quiz %} {% include 'notes/note_quiz.html' %} {% endif %}
  1. You can highlight important words or phrases in this note to add definitions for them.

  2. Keywords you define will appear here, and you can define new ones here too.

  3. {% if note.thanks < 3 %}
  4. Keywords and quizzes are automatically generated when a note gets {{ note.total_thanks_for_mturk }} thanks. This note needs {{ note.remaining_thanks_for_mturk }} more!

  5. {% endif %}
{% endblock %}