review-requested.html 684 B

1234567891011121314151617181920212223
  1. <!DOCTYPE html>
  2. <html xmlns:th="http://www.thymeleaf.org">
  3. <head>
  4. <title>Review Requested</title>
  5. <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  6. </head>
  7. <body>
  8. <p th:inline="text">
  9. Hi [[${username}]].
  10. </p>
  11. <p>
  12. The user <b th:text="${page.owner.username}"></b> has requested a member of staff review their <b th:text="${pagetype}"></b> page
  13. <b th:text="${page.details.title}"></b>.
  14. </p>
  15. <p>Please visit the <a th:href="${websiteFullUrl} + '/admin/pages'" >Store Page Moderation</a> area if you wish to review this page.</p>
  16. <p>
  17. This is an automated message sent by <span th:text="${siteName}"></span>.
  18. </p>
  19. </body>
  20. </html>