{% extends "base.html" %}
{% load humanize %}
{% load staticfiles %}
{% block title %}Campaign Report: {{ title }}{% endblock title %}
{% block main_content %}
Campaign Summary: {{ title }}
| Total Images: |
{{ total_asset_count|intcomma }} |
| Total Projects: |
{{ projects.paginator.count|intcomma }} |
{% for project in projects %}
| Images in this Project |
{{ project.asset_count|intcomma }} |
| Number of Transcribers |
{{ project.transcriber_count|intcomma }} |
| Number of Reviewers |
{{ project.reviewer_count|intcomma }} |
| Tags |
{{ project.tag_count|intcomma }} |
Transcription Statuses
{% for status, count in project.transcription_statuses %}
| {{ status }} |
{{ count }} |
{% endfor %}
{% endfor %}
{% endblock main_content %}