source: WAeUP_SRP/trunk/skins/waeup_default/unchecked.pt @ 320

Last change on this file since 320 was 320, checked in by Henrik Bettermann, 18 years ago

unchecked action added, and some content types fixed

File size: 1.4 KB
Line 
1<html metal:use-macro="here/main_template/macros/master">
2
3<body>
4
5<div metal:fill-slot="main">
6
7
8<div class=""
9     tal:define="physPath python:'/'.join(here.getPhysicalPath());
10                 results python: here.portal_catalog(review_state='unchecked', path=physPath);
11                 purl here/portal_url;
12                ">
13
14<div tal:condition="results">
15<h1 i18n:translate="">Items unchecked inside <span tal:content="here/LongTitle|here/title_or_id " /></h1>
16
17
18
19<table width="100%" cellspacing="0" cellpadding="2"
20      summary="contents of the folder"
21      class="folderButtons"
22      tal:define="can_add python:checkPerm('Add portal content', here);
23                  can_del python:checkPerm('Delete objects', here);">
24
25  <tbody tal:repeat="item results">
26
27  <tr><td></td><td></td><td></td></tr>
28
29  <tr tal:define="objURL string:${item/getURL}/view;
30                  objPath item/getPath;
31                  title item/Title;
32                 ">
33  <td i18n:translate="">
34    <span tal:replace="item/id" />
35  </td>
36  <td>
37  <a href="url"
38      tal:attributes="href objURL">
39   <span tal:content="python: title or '(No title)'" />
40  </a>
41  </td>
42 
43  <td>
44    <span tal:replace="item/Type" />
45  </td>
46 </tr>
47
48 </tbody>
49</table>
50</div>
51
52
53<div tal:condition="python: not results">
54 <p i18n:translate="">There are no items matching your specified criteria.</p>
55</div>
56
57</div>
58
59</div>
60
61</body>
62</html>
Note: See TracBrowser for help on using the repository browser.