Show tags in notification text preview modal

This commit is contained in:
JonnyWong16 2019-02-24 11:18:18 -08:00
commit 6397b1e5a7
2 changed files with 8 additions and 3 deletions

View file

@ -8,7 +8,12 @@
% if text:
% for item in text:
<div style="padding-bottom: 10px;">
<h4>${item['media_type'].capitalize()}</h4>
<h4>
${item['media_type'].capitalize()}
% if item['media_type'] != 'server':
<span class="inline-pre">&lt;${item['media_type']}&gt;&lt;/${item['media_type']}&gt;</span> tags
% endif
</h4>
% if agent != 'webhook':
<pre>${item['subject']}</pre>
% endif