[Zope3-checkins] CVS: Zope3/lib/python/Zope/App/OFS/Container/Views/Browser - index.pt:1.2
Jim Fulton
jim@zope.com
Fri, 4 Oct 2002 15:56:33 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/App/OFS/Container/Views/Browser
In directory cvs.zope.org:/tmp/cvs-serv5949/lib/python/Zope/App/OFS/Container/Views/Browser
Modified Files:
index.pt
Log Message:
Added additional dublin core data to listing and copied style from
contents listing.
=== Zope3/lib/python/Zope/App/OFS/Container/Views/Browser/index.pt 1.1 => 1.2 ===
--- Zope3/lib/python/Zope/App/OFS/Container/Views/Browser/index.pt:1.1 Tue Oct 1 08:58:03 2002
+++ Zope3/lib/python/Zope/App/OFS/Container/Views/Browser/index.pt Fri Oct 4 15:56:31 2002
@@ -16,14 +16,20 @@
<body>
<div metal:fill-slot="body">
- <table class="ContentListing">
-
- <tbody>
-
+ <table id="sortable" class="listing" summary="Content listing"
+ cellpadding="2" cellspacing="0" >
+
+ <thead>
<tr>
- <td class="ContentIcon"><br /> </td>
- <th class="ContentTitle">Title</th>
+ <th> </th>
+ <th>Name</th>
+ <th>Title</th>
+ <th>Created</th>
+ <th>Modified</th>
</tr>
+ </thead>
+
+ <tbody>
<tr tal:repeat="info view/listContentInfo">
@@ -38,9 +44,13 @@
<td class="ContentTitle">
<a href="subfolder_id"
tal:attributes="href info/url"
- tal:content="info/title"
- >Folder Title or ID here</a>
+ tal:content="info/id"
+ >ID here</a>
</td>
+
+ <td><span tal:content="info/title|default"> </span></td>
+ <td><span tal:content="info/created|default"> </span></td>
+ <td><span tal:content="info/modified|default"> </span></td>
</tr>