{% extends "base.html" %} {% block title %}Entry #{{ sub['id'] }} · SubmitStream{% endblock %} {% block content %}

← {{ form['name'] }} entries

Entry #{{ sub['id'] }} {{ sub['status'] }}

{% if sub['status'] != 'read' %}{% endif %} {% if sub['status'] != 'spam' %}{% endif %} {% if sub['status'] == 'spam' %}{% endif %}
{% if user.can_create %}
{% endif %}

{{ sub['created_at'] }} · IP {{ sub['submitter_ip'] or '-' }} · Origin {{ sub['origin'] or '-' }}

Submitted fields

{% for k, v in payload.items() %} {% endfor %}
{{ k }} {% if v is iterable and v is not string %}{{ v|join(', ') }}{% else %}{{ v }}{% endif %}

Notifications

{% if notifs %} {% for n in notifs %} {% endfor %}
RecipientKindStatusAttemptsLast error
{{ n['recipient'] }} {{ n['kind'] }} {{ n['status'] }} {{ n['attempts'] }} {{ n['last_error'] or '' }}
{% else %}

No notifications were generated for this entry.

{% endif %}

Debug timeline

{% for e in events %}
{{ e['message'] }}
{% else %}

No events.

{% endfor %}
{% endblock %}