{% extends "base.html" %} {% load humanize %} {% block title %}My prints — hamprint{% endblock %} {% block content %}

My prints

All prints submitted with {{ user.email|default:user.get_username }}.

{{ counts.total }} total {% if counts.queued %}· {{ counts.queued }} queued{% endif %} {% if counts.printing %}· {{ counts.printing }} printing{% endif %} {% if counts.completed %}· {{ counts.completed }} completed{% endif %}
{% if submissions %}
{% for sub in submissions %} {% endfor %}
Codename Source Status
{{ sub.slug }} {{ sub.source_label }} {{ sub.get_status_display }}
{% if is_paginated %}

Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} · {{ page_obj.paginator.count }} total

{% if page_obj.has_previous %} ← Previous {% else %} ← Previous {% endif %} {% if page_obj.has_next %} Next → {% else %} Next → {% endif %}
{% endif %} {% else %}

No prints yet.

Once you submit one, it'll show up here.

+ Submit a print
{% endif %}
+ Submit another print
{% if not user.is_staff %} Close account {% endif %} Sign out
{% endblock %}