{% extends "layout.html" %} {% block body %}

Actions

Add a new user to the system. A password will be automatically generated.

Assign unassigned articles to coders. You can choose to assign the same n articles to all coders, n distinct articles to each coder, or assigns n articles to each coder, such that k users code each article.

or
{% for u in ura%}
{% endfor %}

or

or

Transfers articles which are in the queue of one or more coders into the queue of one or more other coders.

{% for u in ura%}
{% endfor %}
=>
{% for u in ura%}
{% endfor %}

Assigns articles which have been coded by one or more coders to be coded by one or more other coders.

{% for u in ura%}
{% endfor %}
=>
{% for u in ura%}
{% endfor %}
{#% if config['SOLR'] %#}
Select database or publication
or

List each ID on a separate line.

{#% endif %#}

Coder stats

    {% for k, v in unassigned|sort %}
  • {{ k }}: {{ v }}
  • {% endfor %}

{% for u in ura.keys() %} {% endfor %}
Remaining Completed
{{ ura[u]|capitalize }} {{ coded[u]['remaining'] }} {{ coded[u]['completed'] }}
{% endblock %}