diff options
Diffstat (limited to 'templates/web/base/my/planned.html')
-rw-r--r-- | templates/web/base/my/planned.html | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/templates/web/base/my/planned.html b/templates/web/base/my/planned.html new file mode 100644 index 000000000..2e852ea01 --- /dev/null +++ b/templates/web/base/my/planned.html @@ -0,0 +1,32 @@ +[% + SET bodyclass = 'mappage'; + PROCESS "maps/${map.type}.html" IF problems.size; + INCLUDE 'header.html', title = loc('Your planned reports') +%] + +[% IF problems.size %] + [% map_html %] + </div> + <div id="map_sidebar"> + <div id="side"> +[% ELSE %] + <div id="map_sidebar"> + <div id="skipped-map"> +[% END %] + +<h1>[% loc('Your planned reports') %]</h1> + +[% IF ! has_content %] +[% loc('You haven’t planned any reports yet.') %] +[% END %] + +<section class="full-width"> +[% INCLUDE "reports/_list-filters.html", use_form_wrapper = 1 %] +[% INCLUDE 'pagination.html', pager = problems_pager, param = 'p' %] +[% INCLUDE 'my/_problem-list.html' %] +</section> + + </div> + </div> + +[% INCLUDE 'footer.html' %] |