{% extends "layout/base.html" %} {% load i18n %} {% load staticfiles %} {% block content %}
{% for box in object_list %}

{{box.name}}

{{box.description}}

{% if box.status == allow_actions %} {% endif %}

{% trans "Messages:" %} {{box.messages.count}}/{{box.max_messages}}

{% trans "Created on:" %} {{box.created_at}}

{% if box.expires_at %}

{% trans "Expires on:" %} {{box.expires_at}}

{% endif %} {% if box.messages.count %}

{% trans "Last sent:" %} {{box.last_sent_at}}

{% endif %}
{% if box.status == allow_actions %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
{% empty %} {% if display_status == 'Open' %}

{% trans "You don't have any boxes yet" %}

{% trans "A Box is a generated link where other people can submit information that will be encrypted and delivered to you. They can have several different settings." %}

{% trans "If you already have configured your public key in the settings menu, you just need to click the ''New Box'' button above to start using Hawkpost. If not please add your public key first." %}

{% endif %} {% endfor %}
{% endblock content %} {% block scripts %} {{ block.super }} {% endblock scripts %}