Last change
on this file since 16680 was
486,
checked in by joachim, 18 years ago
|
svn -R propset svn:keywords "Id" .
added layout_application_/edit/create/view
and cleaned that up.
|
-
Property svn:keywords set to
Id
|
File size:
1.5 KB
|
Rev | Line | |
---|
[320] | 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 | |
---|
[331] | 25 | <thead> |
---|
| 26 | <tr><td><strong>Title</strong></td><td><strong>Id</strong></td><td><strong>Type</strong></td></tr> |
---|
| 27 | </thead> |
---|
| 28 | |
---|
| 29 | |
---|
[320] | 30 | <tbody tal:repeat="item results"> |
---|
| 31 | |
---|
| 32 | <tr><td></td><td></td><td></td></tr> |
---|
| 33 | |
---|
| 34 | <tr tal:define="objURL string:${item/getURL}/view; |
---|
| 35 | objPath item/getPath; |
---|
| 36 | title item/Title; |
---|
| 37 | "> |
---|
| 38 | <td> |
---|
| 39 | <a href="url" |
---|
| 40 | tal:attributes="href objURL"> |
---|
| 41 | <span tal:content="python: title or '(No title)'" /> |
---|
| 42 | </a> |
---|
| 43 | </td> |
---|
[330] | 44 | |
---|
| 45 | <td i18n:translate=""> |
---|
| 46 | <span tal:replace="item/id" /> |
---|
| 47 | </td> |
---|
[320] | 48 | |
---|
| 49 | <td> |
---|
[330] | 50 | <span tal:replace="item/portal_type" /> |
---|
[320] | 51 | </td> |
---|
| 52 | </tr> |
---|
| 53 | |
---|
| 54 | </tbody> |
---|
| 55 | </table> |
---|
| 56 | </div> |
---|
| 57 | |
---|
| 58 | |
---|
| 59 | <div tal:condition="python: not results"> |
---|
| 60 | <p i18n:translate="">There are no items matching your specified criteria.</p> |
---|
| 61 | </div> |
---|
| 62 | |
---|
| 63 | </div> |
---|
| 64 | |
---|
| 65 | </div> |
---|
| 66 | |
---|
| 67 | </body> |
---|
| 68 | </html> |
---|
Note: See
TracBrowser for help on using the repository browser.