Skip to content
Snippets Groups Projects

Remove NetID, Email + Add Student Number

6 files
+ 15
11
Compare changes
  • Side-by-side
  • Inline

Files

@@ -38,7 +38,8 @@
<table class="table">
<tr class="table_header">
<th th:text="#{general.name}"></th>
<th th:text="#{person.name}"></th>
<th th:text="#{person.number}"></th>
<th th:text="#{edition}"></th>
<th th:text="#{jobOffer}"></th>
<th th:text="#{jobOffer.status}"></th>
@@ -46,6 +47,7 @@
</tr>
<tr th:each="app : ${applications}">
<td th:text="${@personCacheManager.getOrThrow(app.id.personId).displayName}"></td>
<td th:text="${@personCacheManager.getOrThrow(app.id.personId).number}"></td>
<td th:with="edition = ${@editionCacheManager.getOrThrow(app.jobOffer.editionId)}" th:text="|${edition.course.name} - ${edition.name}|"></td>
<td th:text="${app.jobOffer.name}"></td>
<td th:text="#{|status.jobOffer.${#strings.toLowerCase(app.status)}|}"></td>
Loading