aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/my/my.html
blob: 1501c2d263b2346760fb44b3da297b03de9e2b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[% INCLUDE 'header.html', title => loc('My Reports') %]

<h1>[% loc('Your Reports') %]</h1>

[% FOREACH p = c.user.problems %]
    [% "<ul>" IF loop.first %]

    <li><a href="[% c.uri_for( '/report', p.id ) %]">[% p.title | html %]</a> ([% loc(p.state) %])</li>

    [% "</ul>" IF loop.last %]
[% END %]


<p>FIXME - put in blurb here</p>

<a href="/auth/change_password">change password</a>

[% INCLUDE 'footer.html' %]