mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
abb9a61d0d
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/cms/trunk@39000 467b73ca-7a2a-4603-9d3b-597d59a354a9
27 lines
753 B
Scheme
Executable File
27 lines
753 B
Scheme
Executable File
<div id="$id" class="$Classes">
|
|
<% include TableListField_PageControls %>
|
|
<table class="data">
|
|
<thead>
|
|
<tr>
|
|
<% if Markable %><th width="18"> </th><% end_if %>
|
|
<% control Headings %>
|
|
<th class="$Name">$Title</th>
|
|
<% end_control %>
|
|
<th width="18"> </th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<% control Items %>
|
|
<tr id="record-$Parent.Name-$ID">
|
|
<% if Markable %><td width="18" class="markingcheckbox">$MarkingCheckbox</td><% end_if %>
|
|
<% control Fields %>
|
|
<td>$Value</td>
|
|
<% end_control %>
|
|
<td width="18">
|
|
<a class="popuplink editlink" href="$EditLink" target="_blank"><img src="cms/images/edit.gif" alt="edit" /></a>
|
|
</td>
|
|
</tr>
|
|
<% end_control %>
|
|
</tbody>
|
|
</table>
|
|
</div> |