{% extends 'base.html' %} {% block extra_css %} {{ form.media.css }} {% endblock %} {% block extra_js %} {{ form.media.js }} {% endblock %} {% block content %}
{% if map_complete %}

Mapping successful

{{ added }} works, {{ added_free }} of them free, added to {{ onto_subject.name }}

Added this keyword...

{% with onto_subject as subject%} {% include 'subjectbox.html' %} {% endwith %}

... to works with this keyword.

{% include 'subjectbox.html' %}

Map more keywords

{% csrf_token %}

Add this keyword...

{{ form.onto_subject }}

... to works with this keyword.

{{ form.subject }}
{% else %}

Keyword mapping

{% csrf_token %}

Add this keyword...

{% if onto_subject %}
{{ form.onto_subject }}
{% with onto_subject as subject%} {% include 'subjectbox.html' %} {% endwith %} {% else %} {{ form.onto_subject.errors }}{{ form.onto_subject }} {% endif %}

... to works with this keyword.

{% if subject %}
{{ form.subject }}
{% include 'subjectbox.html' %} {% else %} {{ form.subject.errors }}{{ form.subject }} {% endif %}

{% if subject and onto_subject %}

This can't be undone, so be sure you want to do this!

{% if subject.works.all.count > onto_subject.works.all.count %}

Do you really want all of {{subject.name}} to also have {{onto_subject.name}}???


Not Really {% endif %} {% else %} {% endif %}
{% endif %}
{% endblock %}