aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/base/report/updates.html
blob: 1d37c1d99d6577bfa630543776181e1141907a85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
[% global.last_state = '' %]
[% FOREACH update IN updates %]
[%- IF global.last_state == 'hidden' OR global.last_state == 'unconfirmed' OR update.problem_state == 'hidden' OR update.problem_state == 'unconfirmed' %]
  [%- IF update.problem_state != '' %]
  [%- global.last_state = update.problem_state %]
  [%- END %]
  [%- NEXT %]
[%- END %]
[% INCLUDE 'report/update.html' %]
[% END %]

[% BLOCK meta_line %]

    [% IF update.whenanswered %]
        [%# A questionnaire update, currently saying report is still open %]
        [% loc('Still open, via questionnaire') %], [% prettify_dt( update.whenanswered ) %]
        [% RETURN %]
    [% END %]

    [% update.meta_line(c) %]

[% END %]