{% extends "base.html" %} {% block title %}MockPost — Message detail{% endblock %} {% block content %}

{{ icon }} Message detail

{{ m.raw_payload }}
ID{{ m.id }}
Channel{{ m.channel }}
Direction{{ m.direction }}
From{{ m.sender or '' }}
To{{ m.recipient or '' }}
Subject{{ m.subject or '' }}
Status{{ m.status }}
Created{{ m.created_at }}
{% if m.channel == 'mail' and m.body %}

Body

{{ m.body }}
{% endif %} {% endblock %}