aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/default/my/my.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/web/default/my/my.html')
-rw-r--r--templates/web/default/my/my.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/templates/web/default/my/my.html b/templates/web/default/my/my.html
new file mode 100644
index 000000000..03b180a3a
--- /dev/null
+++ b/templates/web/default/my/my.html
@@ -0,0 +1,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 %]
+
+
+[%# FIXME - put in blurb here %]
+
+<a href="/auth/change_password">change password</a>
+
+[% INCLUDE 'footer.html' %] \ No newline at end of file