Changeset 42d565b in Git for src/main/resources/templates/personsList.html
- Timestamp:
- 02/06/22 21:38:16 (3 years ago)
- Branches:
- main
- Children:
- 7f36551
- Parents:
- 5b447b0 (diff), 2efe93e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - git-author:
- Mato-77 <56981531+Mato-77@…> (02/06/22 21:38:16)
- git-committer:
- GitHub <noreply@…> (02/06/22 21:38:16)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/main/resources/templates/personsList.html
r5b447b0 r42d565b 12 12 <tr> 13 13 <th scope="col">Име</th> 14 < th scope="col">Презиме</th>14 <!--<th scope="col">Презиме</th>--> 15 15 <th scope="col">Датум рагање</th> 16 < th scope="col">Опис</th>16 <!--<th scope="col">Опис</th>--> 17 17 <!-- <th scope="col">Занрови</th>--> 18 18 <th scope="col">Слика</th> … … 31 31 <tbody> 32 32 <tr th:each="person : ${persons}" class="elements"> 33 <td th:text="${person.getName()}"></td>34 < td th:text="${person.getSurname()}"></td>33 <td><a th:href="@{'/persons/{id}' (id=${person.getPersonId()})}" th:text="${person.getName() + ' ' + person.getSurname()}"></a></td> 34 <!--<td th:text="${person.getSurname()}"></td>--> 35 35 <td th:text="${person.getDateOfBirth()}"></td> 36 < td th:text="${person.getDescription()}"></td>36 <!--<td th:text="${person.getDescription()}"></td>--> 37 37 38 38 <!-- <td>-->
Note:
See TracChangeset
for help on using the changeset viewer.