Ignore:
Timestamp:
02/06/22 21:38:16 (2 years ago)
Author:
GitHub <noreply@…>
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)
Message:

Merge pull request #1 from partaloski/master

Fixed and added a better front end, improved clarity

File:
1 edited

Legend:

Unmodified
Added
Removed
  • target/classes/templates/personsList.html

    r5b447b0 r42d565b  
    1212                        <tr>
    1313                            <th scope="col">Име</th>
    14                             <th scope="col">Презиме</th>
     14                            <!--<th scope="col">Презиме</th>-->
    1515                            <th scope="col">Датум рагање</th>
    16                             <th scope="col">Опис</th>
     16                            <!--<th scope="col">Опис</th>-->
    1717<!--                            <th scope="col">Занрови</th>-->
    1818                            <th scope="col">Слика</th>
     
    3131                        <tbody>
    3232                        <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>-->
    3535                            <td th:text="${person.getDateOfBirth()}"></td>
    36                             <td th:text="${person.getDescription()}"></td>
     36                            <!--<td th:text="${person.getDescription()}"></td>-->
    3737
    3838<!--                            <td>-->
Note: See TracChangeset for help on using the changeset viewer.