source: products/quintagroup.analytics/branches/treemap/quintagroup/analytics/browser/type_by_state.pt @ 3404

Last change on this file since 3404 was 3372, checked in by potar, 12 years ago

Added new branch

File size: 2.3 KB
Line 
1<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en"
2      xmlns:tal="http://xml.zope.org/namespaces/tal"
3      xmlns:metal="http://xml.zope.org/namespaces/metal"
4      xmlns:i18n="http://xml.zope.org/namespaces/i18n"
5      lang="en"
6      metal:use-macro="context/prefs_main_template/macros/master">
7
8<metal:main metal:fill-slot="prefs_configlet_main" i18n:domain="quintagroup.analytics">
9    <body>
10        <div id="wrapper">
11            <h1>Quintagroup Analytics Tool for Plone</h1>
12            <ul class="formTabs" id="navigation">
13                <li class="formTab"><a href="@@qa_overview">Overview</a></li>
14                <li class="formTab"><a href="@@ownership_by_type">Ownership by type</a></li>
15                <li class="formTab"><a href="@@ownership_by_state">Ownership by state</a></li>
16                <li class="formTab"><a class="selected" href="@@type_by_state">Types by state</a></li>
17                <li class="formTab"><a href="@@portlets_stats">Portlets stats</a></li>
18                <li class="formTab"><a href="@@legacy_portlets">Legacy portlets</a></li>
19                <li class="formTab"><a href="@@properties_stats">Properties stats</a></li>
20            </ul>
21        </div>
22        <p>The following chart and table display workflow states of the site's most frequently created content types.
23           You can see the total number of site's content objects of every content type.</p>
24        <div id="chart" tal:content="structure view/getChart">
25            Chart will be here
26        </div>
27        <table class="listing">
28            <tr>
29                <th></th>
30                <th tal:repeat="user view/getTypes" tal:content="user">User</th>
31            </tr>
32            <tr tal:repeat="type view/getStates">
33                <th tal:content="type">Document</th>
34                <td tal:repeat="count python:view.getContent(type)" tal:content="count">123</td>
35            </tr>
36            <tr>
37                <th tal:content="view/getNoWFContentTitle">No workflow</th>
38                <td tal:repeat="count view/getNoWFContent" tal:content="count">123</td>
39            </tr>
40            <tr>
41                <th>Total</th>
42                <td tal:repeat="total view/getTotal" tal:content="total">123</td>
43            </tr>
44        </table>
45    </body>
46  </metal:main>
47</html>
Note: See TracBrowser for help on using the repository browser.