silverstripe-framework/templates/TableListField.ss
Hayden Smith 4a5d9b03f8 Moved Sapphire module to open source path
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@39001 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-07-19 10:40:28 +00:00

81 lines
2.0 KiB
Scheme
Executable File

<div id="$id" class="$Classes TableField">
<% if Print %><% else %><% include TableListField_PageControls %><% end_if %>
<table class="data">
<thead>
<tr>
<% if Markable %><th width="16">&nbsp;</th><% end_if %>
<% if Print %>
<% control Headings %>
<th class="$Name">
$Title
</th>
<% end_control %>
<% else %>
<% control Headings %>
<th class="$Name">
<% if IsSortable %>
<span class="sortTitle">
<a href="$SortLink">$Title</a>
</span>
<span class="sortLink <% if SortBy %><% else %>sortLinkHidden<% end_if %>">
<a href="$SortLink"">
<% if SortDirection = desc %>
<img src="cms/images/bullet_arrow_up.png" alt="Sort ascending" />
<% else %>
<img src="cms/images/bullet_arrow_down.png" alt="Sort descending" />
<% end_if %>
</a>
&nbsp;
</span>
<% else %>
$Title
<% end_if %>
</th>
<% end_control %>
<% end_if %>
<% if Can(delete) %><th width="18">&nbsp;</th><% end_if %>
</tr>
</thead>
<% if HasSummary %>
<tfoot>
<tr class="summary">
<% include TableListField_Summary %>
</tr>
</tfoot>
<% end_if %>
<tbody>
<% if HasGroupedItems %>
<% control GroupedItems %>
<% control Items %>
<% include TableListField_Item %>
<% end_control %>
<tr class="summary partialSummary">
<% include TableListField_Summary %>
</tr>
<% end_control %>
<% else %>
<% if Items %>
<% control Items %>
<% include TableListField_Item %>
<% end_control %>
<% else %>
<tr class="notfound">
<% if Markable %><th width="18">&nbsp;</th><% end_if %>
<td colspan="$Headings.Count"><i>No items found</i></td>
<% if Can(delete) %><td width="18">&nbsp;</td><% end_if %>
</tr>
<% end_if %>
<% if Can(add) %>
$AddRecordForm.AsTableRow
<% end_if %>
<% end_if %>
</tbody>
</table>
<div class="utility">
<% control Utility %>
<span class="item"><a href="$Link" target="_blank">$Title</a></span>
<% end_control %>
</div>
</div>