mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
a377a67e54
mlanthaler: The missing authenticator base class... (merged from branches/gsocmlanthaler: Switched to an authenticator and a form class to be able to add other authentication methods. (merged from branches/gsoc) mlanthaler: The missing authenticator base class... (merged from branches/gsoc)) git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@41729 467b73ca-7a2a-4603-9d3b-597d59a354a9
45 lines
1.6 KiB
Scheme
Executable File
45 lines
1.6 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
|
|
<img src="cms/images/network-save.gif" class="ajaxloader" style="display: none" />
|
|
</div>
|
|
<% if IsAddMode %>
|
|
<% else %>
|
|
<% if ShowPagination %>
|
|
<div id="Pagination">
|
|
<% if PopupPrevLink %>
|
|
<div id="Pagination_Previous">
|
|
<a href="$PopupPrevLink"><img src="cms/images/pagination/previousArrow.png" /></a>
|
|
<a href="$PopupPrevLink"><div>Previous</div></a>
|
|
</div>
|
|
<% end_if %>
|
|
<% if TotalCount == 1 %>
|
|
<% else %>
|
|
<% control pagination %>
|
|
<% if active %>
|
|
<a href="$link">$number</a>
|
|
<% else %>
|
|
<span>$number</span>
|
|
<% end_if %>
|
|
<% end_control %>
|
|
<% end_if %>
|
|
<% if PopupNextLink %>
|
|
<div id="Pagination_Next">
|
|
<a href="$PopupNextLink"><img src="cms/images/pagination/nextArrow.png" /></a>
|
|
<a href="$PopupNextLink"><div>Next</div></a>
|
|
</div>
|
|
<% end_if %>
|
|
<% end_if %>
|
|
<% end_if %>
|
|
<script type="text/javascript">
|
|
divQ = $('Pagination').getElementsByTagName('div').length;
|
|
aQ = $('Pagination').getElementsByTagName('a').length - divQ + 1;
|
|
$('Pagination').style.width = aQ * 15 + 130 + "px";
|
|
</script>
|
|
</body>
|
|
</html> |