]> git.decadent.org.uk Git - maypole.git/blob - templates/factory/frontpage
407fc6e6d502d2753266d1def2d3dbd6a3e5bed5
[maypole.git] / templates / factory / frontpage
1 [%#
2
3 =head1 frontpage
4
5 This is the frontpage for your Maypole application.
6 It shows a list of all tables it is allowed to display.
7
8 =cut
9
10 #%]
11 [% INCLUDE header %]
12 <h2>
13     [% config.application_name || "A poorly configured Maypole application" %]
14 </h2>
15 <table border="0" width="70%">
16 [% FOR table = config.display_tables %]
17     <tr>
18         <td>
19             <a href="[%table%]/list">List by [%table %]</a>
20         </td>
21     </tr>
22 [% END %]
23 </table>
24 <br/>
25 [% INCLUDE footer %]