mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 08:05:56 +02:00
26cc14a930
Utilise the new features provided by the framework to get richer interface: * save buttons that highlight the current state of the page * minor actions in a drop-up * embed last publishing and saving information
10 lines
313 B
Scheme
10 lines
313 B
Scheme
<div class='cms-sitetree-information'>
|
|
<p class="meta-info"><% _t('LASTSAVED', 'Last saved') %> $LastEdited.Ago(0)
|
|
<% if ExistsOnLive %>
|
|
<br /><% _t('LASTPUBLISHED', 'Last published') %> $Live.LastEdited.Ago(0)
|
|
<% else %>
|
|
<br /><em><% _t('NOTPUBLISHED', 'Not published') %></em>
|
|
<% end_if %>
|
|
</p>
|
|
</div>
|