Skip to content

Commit 8af56e3

Browse files
committed
List of ALL Tasks
1 parent 7137cf4 commit 8af56e3

File tree

3 files changed

+33
-24
lines changed

3 files changed

+33
-24
lines changed

src/main/java/org/woehlke/java/simpleworklist/domain/PagesController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
@Slf4j
1515
@Controller
1616
@RequestMapping(path = "/")
17-
public class PagesController {
17+
public class PagesController extends AbstractController {
1818

1919
@RequestMapping(path = "/information", method = RequestMethod.GET)
2020
public final String renderPageInformation(

src/main/resources/templates/pages/information.html

Lines changed: 26 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -21,29 +21,38 @@ <h2>© 2022 Thomas Wöhlke</h2>
2121
</div>
2222

2323
<div th:fragment="mytwcontent">
24-
<div id="user-login-form-more-information">
25-
<div>
26-
<span th:text="#{user.loginForm.moreInformation}">For More Information please visit:</span>
24+
25+
<div class="card" id="user-login-form-more-information">
26+
<div class="card-body">
27+
<h5 class="card-title" th:text="#{user.loginForm.moreInformation}">For More Information please visit:</h5>
2728
<ul>
28-
<li><span th:utext="#{user.loginForm.github}">Github:</span> <a
29-
href="https://github.com/Spring-Framework-Java-Apps/simpleworklist/" target="_blank">https://github.com/Spring-Framework-Java-Apps/simpleworklist/</a>
29+
<li>
30+
<span th:utext="#{user.loginForm.github}">Github:</span>
31+
<a href="https://github.com/Spring-Framework-Java-Apps/simpleworklist/" target="_blank">
32+
https://github.com/Spring-Framework-Java-Apps/simpleworklist/
33+
</a>
34+
</li>
35+
<li>
36+
<span th:utext="#{user.loginForm.myBlog}">My Blog:</span>
37+
<a href="http://thomas-woehlke.blogspot.de/" target="_blank">http://thomas-woehlke.blogspot.de/</a>
3038
</li>
31-
<li><span th:utext="#{user.loginForm.myBlog}">My Blog:</span> <a href="http://thomas-woehlke.blogspot.de/"
32-
target="_blank">http://thomas-woehlke.blogspot.de/</a>
39+
<li>
40+
<span th:utext="#{user.loginForm.projectPage}">The Project Page:</span>
41+
<a href="http://woehlke.org/p/simpleworklist/" target="_blank">http://woehlke.org/p/simpleworklist/</a>
3342
</li>
34-
<li><span th:utext="#{user.loginForm.projectPage}">The Project Page:</span> <a
35-
href="http://woehlke.org/p/simpleworklist/" target="_blank">http://woehlke.org/p/simpleworklist/</a></li>
3643
<li>Getting Things Done&reg; @ Wikipedia:
37-
<a href="https://de.wikipedia.org/wiki/Getting_Things_Done" target="_blank" th:if="${locale == 'de'}">https://de.wikipedia.org/wiki/Getting_Things_Done/</a>
38-
<a href="https://en.wikipedia.org/wiki/Getting_Things_Done" target="_blank" th:if="${locale != 'de'}">https://en.wikipedia.org/wiki/Getting_Things_Done</a>
44+
<a href="https://de.wikipedia.org/wiki/Getting_Things_Done" target="_blank" th:if="${locale == 'de'}">
45+
https://de.wikipedia.org/wiki/Getting_Things_Done
46+
</a>
47+
<a href="https://en.wikipedia.org/wiki/Getting_Things_Done" target="_blank" th:if="${locale != 'de'}">
48+
https://en.wikipedia.org/wiki/Getting_Things_Done
49+
</a>
3950
</li>
4051
</ul>
41-
</div>
42-
<div>
43-
<small>
44-
<span th:utext="#{user.loginForm.gtd.copyright}">GTD&reg; and Getting Things Done&reg; are registered trademarks of the David Allen Company. SimpleWorklist is
45-
not affiliated with or endorsed by the David Allen Company.</span>
46-
</small>
52+
<p class="card-text" th:utext="#{user.loginForm.gtd.copyright}">
53+
GTD&reg; and Getting Things Done&reg; are registered trademarks of the David Allen Company.
54+
SimpleWorklist is not affiliated with or endorsed by the David Allen Company.
55+
</p>
4756
</div>
4857
</div>
4958
</div>

src/main/resources/templates/user/selfservice/profile.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ <h5>
6868
</table>
6969
</div>
7070
<div class="card card-body">
71+
<h5 class="card-title">
72+
<span th:utext="#{user.selfservice.profile.userEmail}">User Email:</span>
73+
<strong>
74+
<span sec:authentication="name"></span>
75+
</strong>
76+
</h5>
7177
<ul>
72-
<li>
73-
<span th:utext="#{user.selfservice.profile.userEmail}">User Email:</span>
74-
<strong>
75-
<span sec:authentication="name"></span>
76-
</strong>
77-
</li>
7878
<li>
7979
<i class="fas fa-edit"></i>
8080
<span th:utext="#{user.selfservice.profile.name}">Name:</span>

0 commit comments

Comments
 (0)