source: products/quintagroup.analytics/trunk/quintagroup/analytics/browser/ownership_by_state.pt @ 3028

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

removed functionality that set wf colours for chart

  • Property svn:eol-style set to native
File size: 2.4 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>Content ownership by state</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 class="selected" href="@@ownership_by_state">Ownership by state</a></li>
16                <li class="formTab"><a href="@@type_by_state">Types by state</a></li>
17                <li class="formTab"><a href="@@legacy_portlets">Legacy portlets</a></li>
18                <li class="formTab"><a href="@@properties_stats">Properties stats</a></li>
19                <li class="formTab"><a href="@@portlets_stats">Portlets stats</a></li>
20            </ul>
21        </div>
22        <p>Here you can see information about workflow states that content objects are in and owners of those objects.
23           Below you can see chart that shows workflow states to users map. Also there is a table
24           under the chart. That table displays all workflow states and how many objects are in certain state and who
25           is owner of those objects.
26         </p>
27        <div id="chart" tal:content="structure view/getChart">
28            Chart will be here
29        </div>
30        <table class="listing">
31            <tr>
32                <th></th>
33                <th tal:repeat="user view/getUsers" tal:content="user">User</th>
34            </tr>
35            <tr tal:repeat="type view/getStates">
36                <th tal:content="type">Document</th>
37                <td tal:repeat="count python:view.getContent(type)" tal:content="count">123</td>
38            </tr>
39            <tr>
40                <th tal:content="view/getNoWFContentTitle">Document</th>
41                <td tal:repeat="count view/getNoWFContent" tal:content="count">123</td>
42            </tr>
43            <tr>
44                <th>Total</th>
45                <td tal:repeat="total view/getTotal" tal:content="total">123</td>
46            </tr>
47        </table>
48    </body>
49  </metal:main>
50</html>
Note: See TracBrowser for help on using the repository browser.