aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/report/banner.html
blob: c80d129eb4f875ab81430141f0fa03b0d9d9dcb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[% USE date %]
[% BLOCK banner %]
    <div class="banner">
        <p id="[% id %]">[% text %]</p>
    </div>
[% END %]

[% IF problem.is_open AND date.now - problem.lastupdate.epoch > 8 * 7 * 24 * 60 * 60 %]
    [% INCLUDE banner, id = 'unknown', text = loc('Unknown') %]
[% END %]
[% IF problem.is_fixed %]
    [% INCLUDE banner, id = 'fixed', text = loc('Fixed') %]
[% END %]
[% IF problem.is_closed %]
    [% INCLUDE banner, id = 'closed', text = loc('Closed') %]
[% END %]
[% IF problem.is_in_progress %]
    [% INCLUDE banner, id = 'progress', text = loc('In progress') %]
[% END %]