From d4b4f0c3c92252be50aede144820068b650504ef Mon Sep 17 00:00:00 2001 From: Thomas NOEL Date: Mon, 6 Jun 2016 16:38:50 +0200 Subject: [PATCH] mail: display registered mail number in mail summary (#11226) --- welco/sources/mail/templates/welco/mail_summary.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/welco/sources/mail/templates/welco/mail_summary.html b/welco/sources/mail/templates/welco/mail_summary.html index cc1abd2..7ba521a 100644 --- a/welco/sources/mail/templates/welco/mail_summary.html +++ b/welco/sources/mail/templates/welco/mail_summary.html @@ -1,6 +1,10 @@ {% load i18n %} {% if object.post_date %} -

{% trans "Post Date:" %} {{object.post_date}}

+

{% trans "Post Date:" %} {{object.post_date}}

+{% endif %} + +{% if object.registered_mail_number %} +

{% trans "Registered Mail Number:" %} {{object.registered_mail_number}}

{% endif %}