We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 129c769 commit 8970124Copy full SHA for 8970124
1 file changed
access-control-spring-security/src/main/resources/templates/contacts/list.html
@@ -12,7 +12,7 @@
12
<div class="row" id="welcome">
13
<div class="col-12">
14
<h1>All Contacts
15
- <small th:text="'for ' + ${#httpServletRequest.remoteUser}"></small>
+ <small th:text="|for ${#httpServletRequest.remoteUser}|"></small>
16
</h1>
17
</div>
18
@@ -22,7 +22,7 @@ <h1>All Contacts
22
<div class="col-md-12">
23
<ul>
24
<li th:each="contact : ${contacts}">
25
- <a th:text="${contact.firstname} + ' '+ ${contact.lastname}" th:href="@{|contacts/${contact.id}|}"></a>
+ <a th:text="|${contact.firstname} ${contact.lastname}|" th:href="@{|contacts/${contact.id}|}"></a>
26
</li>
27
</ul>
28
0 commit comments