Code

moving templates around
[roundup.git] / templates / minimal / html / home.html
1 <tal:block metal:use-macro="templates/page/macros/icing">
2 <title metal:fill-slot="head_title">Tracker home</title>
3 <td class="page-header-top" metal:fill-slot="body_title">
4  <h2>Tracker home</h2>
5 </td>
6 <td class="content" metal:fill-slot="content">
8 <!--
9  This is the default body that is displayed when people visit the
10  tracker. The tag below lists the currently open issues. You may
11  replace it with a greeting message, or a different list of issues or
12  whatever. It's a good idea to have the issues on the front page though
13 -->
15 <tal:block tal:define="anon python:request.user.username == 'anonymous'">
16 <p tal:condition="not:anon" class="help">
17 Please select from one of the menu options on the right.
18 </p>
19 <p tal:condition="anon" class="help">
20 Please log in or register.
21 </p>
22 </tal:block>
24 </td>
25 </tal:block>