mirror of
https://github.com/silverstripe/silverstripe-contentreview
synced 2024-10-22 17:05:47 +02:00
24 lines
862 B
Scheme
24 lines
862 B
Scheme
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
|
<html>
|
|
<head></head>
|
|
<body>
|
|
<table id="Content" cellspacing="1" cellpadding="10">
|
|
<tbody>
|
|
<tr>
|
|
<td scope="row" colspan="2" class="typography">
|
|
<h2><% _t('ContentReviewEmails.EMAIL_HEADING','Page(s) due for review') %></h2>
|
|
<p>There are $Pages.Count pages that are due for review today by you.</p>
|
|
</td>
|
|
</tr>
|
|
<% loop Pages %>
|
|
<tr>
|
|
<td valign="top">$Title</td>
|
|
<td><a href="{$BaseURL}admin/pages/edit/show/$ID"><% _t('ContentReviewEmails.REVIEWPAGELINK','Review the page in the CMS') %></a><br />
|
|
<a href="$AbsoluteLink"><% _t('ContentReviewEmails.VIEWPUBLISHEDLINK','View this page on the website') %></a>
|
|
</td>
|
|
</tr>
|
|
<% end_loop %>
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html> |