{% extends "base.html" %} {% load staticfiles %} {% load humanize %} {% load bootstrap4 %} {% block title %}User Profile{% endblock title %} {% block main_content %}

Account Information

{% csrf_token %} {% comment %} We want to list the username but it's not an editable field {% endcomment %}
Member since {{ user.date_joined|date:"SHORT_DATE_FORMAT" }}
{% bootstrap_form form %} {% buttons %} {% endbuttons %}


{% if object_list %}

My Contributions

{% for campaign in contributed_campaigns %} {% endfor %}
Campaign Actions
{{ campaign.title }} {{ campaign.action_count|intcomma }}
{% for campaign, project, item, asset in object_list %} {% ifchanged campaign.title project.title %} {% endifchanged %} {% endfor %}
Time Action Item Page Current Status

{{ campaign.title }}: {{ project.title }}

{{ asset.last_interaction_time|naturaltime }} {{ asset.last_interaction_type.title }} {{ item.title }} {{ asset.sequence }} {{ asset.get_transcription_status_display }}
{% include "fragments/standard-pagination.html" %}
{% endif %}
{% endblock main_content %}