2015-01-06 14:03:44 +01:00
|
|
|
<% #meta %>
|
|
|
|
|
<% if <% this.creator %> is null then '' else
|
|
|
|
|
<% gettext 'Created by {0} on {1}' <% this.creator %> <% this.created short %> %>
|
|
|
|
|
%>
|
|
|
|
|
<% if <% this.created %> is <% this.modified %> then '' else
|
|
|
|
|
<% gettext 'Last modified by {0} on {1}' <% this.modifier %> <% this.modified short %> prefix=<br> %>
|
|
|
|
|
%>
|
|
|
|
|
|
2008-04-21 13:35:50 +00:00
|
|
|
<% #confirm %>
|
2014-12-10 16:50:16 +01:00
|
|
|
<h1><% gettext Warning! %></h1>
|
|
|
|
|
<p class='uk-text-bold'><% param.text %></p>
|
|
|
|
|
<p>
|
|
|
|
|
<% gettext 'Please be aware of the fact that there is no “undo”, so if you click “Proceed” below the changes will be applied irreversibly.' %>
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
<% gettext 'Click “Cancel” now if you are not really sure you want to proceed.' %>
|
|
|
|
|
</p>
|
2008-04-21 13:35:50 +00:00
|
|
|
<form action="<% response.action %>" method="post">
|
2015-01-04 19:12:49 +01:00
|
|
|
<% param.extra %>
|
|
|
|
|
<p>
|
|
|
|
|
<button class='uk-button uk-button-danger' name="proceed" value="1"><% gettext Proceed %></button>
|
2020-06-14 18:58:45 +02:00
|
|
|
<a href='<% session.location %>' class="uk-button uk-button-link"><% gettext Cancel %></a>
|
2015-01-04 19:12:49 +01:00
|
|
|
</p>
|
2008-04-21 13:35:50 +00:00
|
|
|
</form>
|
|
|
|
|
|
2015-05-08 15:14:46 +02:00
|
|
|
<% #source %>
|
|
|
|
|
<div class='uk-text-right uk-text-muted uk-text-small'>
|
|
|
|
|
<% gettext Via %>: <% this.site.title | this.link %>
|
2015-05-20 15:29:28 +02:00
|
|
|
</div><!-- This comment prevents Markdown from rendering an empty paragraph.
|
2015-05-08 15:14:46 +02:00
|
|
|
|
2015-05-20 15:29:28 +02:00
|
|
|
--><% #notify_create %>
|
2008-03-27 15:10:31 +00:00
|
|
|
<% gettext 'Hello {0}.' <% membership.name %> %>
|
2007-10-15 23:29:03 +00:00
|
|
|
|
2015-03-25 16:04:47 +01:00
|
|
|
<% gettext '{0} has added {1} to the site {2}:' <% this.modifier %> <% gettext <% this.kind prefix='a ' %> %> <% site.title %> %>
|
2010-05-24 13:32:40 +00:00
|
|
|
<% this.href %>
|
2007-10-15 23:29:03 +00:00
|
|
|
|
2008-03-27 15:10:31 +00:00
|
|
|
<% gettext "Best regards." %>
|
|
|
|
|
<% gettext "The Management" %>
|
|
|
|
|
|
2008-04-21 13:35:50 +00:00
|
|
|
<% #notify_edit %>
|
2008-03-27 15:10:31 +00:00
|
|
|
<% gettext 'Hello {0}.' <% membership.name %> %>
|
|
|
|
|
|
2015-03-25 16:04:47 +01:00
|
|
|
<% gettext '{0} has modified {1} at the site {2}:' <% this.modifier %> <% gettext <% this.kind prefix='a ' %> %> <% site.title %> %>
|
2010-05-24 13:32:40 +00:00
|
|
|
<% this.href %>
|
2007-10-15 23:29:03 +00:00
|
|
|
|
2008-03-27 15:10:31 +00:00
|
|
|
<% gettext "Best regards." %>
|
|
|
|
|
<% gettext "The Management" %>
|
2015-03-25 16:04:47 +01:00
|
|
|
<% // This comment macro simply adds a linebreak to format the message nicely %>
|