source: products/quintagroup.contentstats/trunk/quintagroup/contentstats/ownership_by_state.pt @ 2870

Last change on this file since 2870 was 2870, checked in by fenix, 14 years ago

initial import.

File size: 1.7 KB
Line 
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2          "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
4      xmlns:tal="http://xml.zope.org/namespaces/tal">
5    <head>
6        <title>Content ownership by state</title>
7        <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
8        <link rel="stylesheet" type="text/css" href="++resource++stats_style.css" />
9    </head>
10    <body>
11        <div id="wrapper">
12            <h1>Content ownership by state</h1>
13            <div id="navigation">
14                <a href="@@ownership_by_type">Ownership by type</a> |
15                <a class="current" href="@@ownership_by_state">Ownership by state</a> |
16                <a href="@@type_by_state">Types by state</a> |
17                <a href="@@legacy_portlets">Legacy portlets</a> |
18                <a href="@@properties_stats">Properties stats</a> |
19                <a href="@@portlets_stats">Portlets stats</a>
20            </div>
21        </div>
22        <div id="chart" tal:content="structure view/getChart">
23            Chart will be here
24        </div>
25        <table style="margin: 0 auto;">
26            <tr>
27                <th></th>
28                <th tal:repeat="user view/getUsers" tal:content="user">User</th>
29            </tr>
30            <tr tal:repeat="type view/getStates">
31                <th tal:content="type">Document</th>
32                <td tal:repeat="count python:view.getContent(type)" tal:content="count">123</td>
33            </tr>
34            <tr>
35                <th>Total</th>
36                <td tal:repeat="total view/getTotal" tal:content="total">123</td>
37            </tr>
38        </table>
39    </body>
40</html>
Note: See TracBrowser for help on using the repository browser.