silverstripe-framework/templates/ComplexTableField_popup.ss
Andrew O'Neil 68e9570c8d Rename pagination() to Pagination()
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@44242 467b73ca-7a2a-4603-9d3b-597d59a354a9
2007-11-05 01:38:25 +00:00

44 lines
1.2 KiB
Scheme
Executable File

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<% base_tag %>
</head>
<body>
<div class="right $PopupClasses">
$DetailForm
</div>
<% if IsAddMode %>
<% else %>
<% if ShowPagination %>
<table id="ComplexTableField_Pagination">
<tr>
<% if PopupPrevLink %>
<td id="ComplexTableField_Pagination_Previous">
<a href="$PopupPrevLink"><img src="cms/images/pagination/record-prev.png" /></a>
<a href="$PopupPrevLink"><div><% _t('PREVIOUS', 'Previous') %></div></a>
</td>
<% end_if %>
<% if TotalCount == 1 %>
<% else %>
<td>
<% control Pagination %>
<% if active %>
<a href="$link">$number</a>
<% else %>
<span>$number</span>
<% end_if %>
<% end_control %>
</td>
<% end_if %>
<% if PopupNextLink %>
<td id="ComplexTableField_Pagination_Next">
<a href="$PopupNextLink"><div><% _t('NEXT', 'Next') %></div></a>
<a href="$PopupNextLink"><img src="cms/images/pagination/record-next.png" /></a>
</td>
<% end_if %>
</td>
<% end_if %>
<% end_if %>
</body>
</html>