{% extends "admin/change_form.html" %} {% load i18n admin_urls humanize %} {% block object-tools-items %} {% if original.pk %}
  • Campaign
  • Project
  • Item
  • Transcriptions
  • {% endif %} {{ block.super }} {% endblock object-tools-items %} {% block content %} {{ block.super }}

    Current status: {{ original.transcription_status }}

    {% if transcriptions %} {% for t in transcriptions %} {% endfor %}
    Transcription History
    ID Creator Created Updated Submitted Review Status
    {{ t.id }} {{ t.user }} {{ t.created_on|naturaltime }} {{ t.updated_on|naturaltime }} {{ t.submitted|naturaltime|default:'' }} {% if t.rejected %} Rejected {% elif t.accepted %} Accepted {% endif %} {% if t.rejected or t.accepted %} by {{ t.reviewed_by }} {% endif %} {% if t.rejected %} {{ t.rejected|naturaltime }} {% elif t.accepted %} {{ t.accepted|naturaltime }} {% endif %}
    {% endif %} {% endblock content %}