blob: efbb3e8daebc9e135186431b9d8d79a4131b776a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[% FOR update IN data %]
<div style="[% list_item_style %]">
[%~ IF update.item_photo %]
<a href="[% problem_url %]">
<img style="[% list_item_photo_style %]" src="[% inline_image(update.get_first_image_fp) %]" alt="">
</a>
[%~ END %]
<p style="[% list_item_p_style %]">“[% update.item_text | html %]”</p>
<p style="[% list_item_date_style %]">
[%~ update.item_name | html IF update.item_name AND NOT update.item_anonymous -%]
[% '(' _ cobrand.prettify_dt(update.confirmed) _ ') ' IF cobrand.include_time_in_update_alerts -%]
</p>
</div>
[% END %]
|