{% extends "base.html" %} {% load url from future %} {% load compress %} {% load notes %} {% block title %} {{ note.name }} {% endblock %} {% block pagestyle %} {% compress css %} {% endcompress %} {{ note_edit_form.media.css }} {% endblock %} {% block pagescripts %} {% compress js %} {% endcompress %} {{ note_edit_form.media.js }} {% if user|can_edit:note %} {% endif %} {% endblock %} {% block raw_content %}
{{ note.name }} {% if user|can_del:note %}
{% csrf_token %} {{ note_delete_form }}
{% else %} {# just to keep the formatting consistent #}
{% endif %} {% 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|can_tag:note %} {% else %} {% endif %} {% if user|can_edit:note %} {% else %} {% 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

{{ note_edit_form.tags.help_text }}

×

Edit Your Note

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

{{ field.help_text }}

{% endwith %}
{% with note_edit_form.html 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 %}