From 139b88645847274edb237ab829d72fbbd7c84bbb Mon Sep 17 00:00:00 2001 From: "Joel M. Halpern" Date: Sat, 2 Nov 2013 21:56:40 +0000 Subject: [PATCH] Added "Last Call Issued:" to front of last call atom feed entry subjects. - Legacy-Id: 6624 --- ietf/templates/community/public/atom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ietf/templates/community/public/atom.xml b/ietf/templates/community/public/atom.xml index 09273bf5d..c6614f4c4 100644 --- a/ietf/templates/community/public/atom.xml +++ b/ietf/templates/community/public/atom.xml @@ -9,7 +9,11 @@ {% for entry in entries %} + {% if entry.type == 'sent_last_call' %} + Last Call Issued: {{ entry.doc.title }} + {% else %} {{ entry.doc.title }} + {% endif %}