blob: de74f33260aa72105dc5f26d4410c46a85f9a5db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[%
recent_photos = c.cobrand.recent_photos('front', 5);
%]
[% IF recent_photos.size %]
<div id="front-recently">
<h2>
[%- IF c.cobrand.moniker == 'hart' %]
Recently reported
[% ELSE %]
[% loc('Recently reported problems') %]
[% END -%]
</h2>
<section class="full-width">
<ul class="issue-list-a">
[% FOREACH problem IN recent_photos %]
[% INCLUDE 'front/_list-entry.html' %]
[% END %]
</ul>
</section>
</div>
[% END %]
|