aboutsummaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
Diffstat (limited to 'templates')
-rw-r--r--templates/web/zurich/admin/list_updates.html10
1 files changed, 6 insertions, 4 deletions
diff --git a/templates/web/zurich/admin/list_updates.html b/templates/web/zurich/admin/list_updates.html
index defd83f21..bde28567b 100644
--- a/templates/web/zurich/admin/list_updates.html
+++ b/templates/web/zurich/admin/list_updates.html
@@ -7,10 +7,12 @@
[% internal_updates=[];
sdm_notes=[];
FOREACH update IN updates;
- IF update.extra.is_internal_note;
- internal_updates.unshift(update);
- ELSE;
- sdm_notes.unshift(update);
+ IF NOT update.extra.is_external_message;
+ IF update.extra.is_internal_note;
+ internal_updates.unshift(update);
+ ELSE;
+ sdm_notes.unshift(update);
+ END;
END;
END
%]