source: products/quintagroup.gauth/trunk/quintagroup/gauth/browser/testview.pt @ 2613

Last change on this file since 2613 was 2579, checked in by mylan, 14 years ago

Added authentication configlet and auth-test view

  • Property svn:eol-style set to native
File size: 905 bytes
Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-US"
2      xmlns:metal="http://xml.zope.org/namespaces/metal"
3      xmlns:tal="http://xml.zope.org/namespaces/tal"
4      metal:use-macro="here/main_template/macros/master"
5      >
6  <body>
7    <div metal:fill-slot="main">
8      <h1 tal:content="view/sh_title">Spreadsheet title</h1>
9      <dl>
10        <tal:loop tal:repeat="f view/files">
11          <dt>Worksheet: <span tal:content="string:${repeat/f/number} (${f/title})">1</span></dt>
12          <dd tal:content="structure f/html" tal:condition="f/html">
13            <table>
14              <tr><td>col 1 name</td><td>col 2 name</td></tr>
15              <tr><td>col 1 value</td><td>col 2 value</td></tr>
16            </table>
17          </dd>
18          <dd><a href="file://"
19                 tal:attributes="href string:${view/base_download_url}&i=${repeat/f/index};">Download</a>
20          </dd>
21          </tal:loop>
22      </dl>
23    </div>
24  </body>
25</html>
Note: See TracBrowser for help on using the repository browser.