24 lines
668 B
HTML
24 lines
668 B
HTML
<!DOCTYPE html>
|
||
<html xmlns:th="http://www.thymeleaf.org">
|
||
<head>
|
||
<title>Уведомление о создании статьи</title>
|
||
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
|
||
<link rel="shortcut icon" th:href="@{|${baseUrl}/favicon.ico|}"/>
|
||
</head>
|
||
<body>
|
||
<p>
|
||
Уважаемый(ая) <span th:text="${user.firstName + ' ' + user.lastName}">Ivan Ivanov</span>
|
||
</p>
|
||
<p>
|
||
Вы были отмечены в следующих задачах:
|
||
</p>
|
||
<p th:each="ping : ${pings}" th:text="${ping.getActivity().getTitle() + ' ' + ping.getDate()}">
|
||
</p>
|
||
<p>
|
||
Regards,
|
||
<br/>
|
||
<em>NG-tracker.</em>
|
||
</p>
|
||
</body>
|
||
</html>
|