{% extends "transcribe/web/base.html" %}
{% block bodyclasses %}users{% endblock %}
{% block content %}
Users ({{ users.count }})
User | finished | skipped | in progress |
---|---|---|---|
{{ transcribe_user.sort_name }} ({{ transcribe_user.user.username }}) | {{ transcribe_user.num_finished_transcriptions }} | {{ transcribe_user.num_skipped_transcriptions }} | {{ transcribe_user.num_in_progress_transcriptions }} |
Global Transcribers | Global Reviewers | Global Admins |
---|---|---|
{% for transcribe_user in global_transcribers %}
{{ transcribe_user.name }} ({{ transcribe_user.user.username }}) {% endfor %} |
{% for transcribe_user in global_reviewers %}
{{ transcribe_user.name }} ({{ transcribe_user.user.username }}) {% endfor %} |
{% for transcribe_user in global_admins %}
{{ transcribe_user.name }} ({{ transcribe_user.user.username }}) {% endfor %} |