1 | <!DOCTYPE html>
|
---|
2 | <html lang="en" xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
|
---|
3 | <head>
|
---|
4 | <meta charset="UTF-8"/>
|
---|
5 | <title> Доктор Термини </title>
|
---|
6 | <link rel="shortcut icon" th:href="@{assets/images/favicon.ico}">
|
---|
7 | <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
|
---|
8 | <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
|
---|
9 | <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
|
---|
10 | <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
|
---|
11 | </head>
|
---|
12 | <body>
|
---|
13 | <form class="form-signin mt-xl-0" method="get" action="/moi-upati">
|
---|
14 | <nav class="navbar navbar-expand-md navbar-dark bg-dark">
|
---|
15 | <div class="container">
|
---|
16 | <form class="form-inline my-2 my-lg-0">
|
---|
17 | <div class="input-group input-group-sm">
|
---|
18 | <a class="navbar-brand" href="/home-doktor"> MEDWEB </a>
|
---|
19 | <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarsExampleDefault"
|
---|
20 | aria-controls="navbarsExampleDefault" aria-expanded="false" aria-label="Toggle navigation">
|
---|
21 | <span class="navbar-toggler-icon"></span>
|
---|
22 | </button>
|
---|
23 | </div>
|
---|
24 | <a class="btn btn-primary btn-sm ml-3" href="/moi-termini">
|
---|
25 | <i class="fa fa-shopping-cart"></i> Мои термини
|
---|
26 | </a>
|
---|
27 | <a class="btn btn-primary btn-sm ml-3" href="/logout">
|
---|
28 | <i class="fa fa-shopping-cart"></i> Одјави се
|
---|
29 | </a>
|
---|
30 | </form>
|
---|
31 | </div>
|
---|
32 | </div>
|
---|
33 | </nav>
|
---|
34 | <section class="jumbotron text-center">
|
---|
35 | <div>
|
---|
36 | <h3> Слободни термини </h3>
|
---|
37 | </div>
|
---|
38 | </section>
|
---|
39 |
|
---|
40 | <div class="container mb-4">
|
---|
41 | <div class="row">
|
---|
42 | <div class="col-12" th:if="${session.doktor.getTerminList().size() > 0}">
|
---|
43 | <div class="table-responsive">
|
---|
44 | <table class="table table-striped">
|
---|
45 | <thead>
|
---|
46 | <tr>
|
---|
47 | <th scope="col"> Термин ИД</th>
|
---|
48 | <th scope="col"> Доктор ИД </th>
|
---|
49 | <th scope="col"> Време </th>
|
---|
50 | <th scope="col"> </th>
|
---|
51 | </tr>
|
---|
52 | </thead>
|
---|
53 | <tbody>
|
---|
54 | <tr th:each="termin : ${terminList}">
|
---|
55 | <td th:text="${termin.getTermin_id()}"></td>
|
---|
56 | <td th:text="${termin.getDoktor_id()}"></td>
|
---|
57 | <td th:text="${termin.getVreme()}"></td>
|
---|
58 | <td class="text-center">
|
---|
59 | <a th:href="@{'/termin/{id}/delete' (id=${termin.getTermin_id()})}" th:method="GET" class="btn btn-sm btn-info">
|
---|
60 | <i class="fa fa-trash"> Отстрани </i>
|
---|
61 | </a>
|
---|
62 | </td>
|
---|
63 | </tr>
|
---|
64 | </tbody>
|
---|
65 | </table>
|
---|
66 | </div>
|
---|
67 | </div>
|
---|
68 | </div>
|
---|
69 | </div>
|
---|
70 | </form>
|
---|
71 |
|
---|
72 | <!-- Footer -->
|
---|
73 | <footer class="text-black-50 mt-xl-5">
|
---|
74 | <div class="container">
|
---|
75 | <div class="row">
|
---|
76 | <div class="col-md-3 col-lg-4 col-xl-3">
|
---|
77 | <h5>About</h5>
|
---|
78 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
79 | <p class="mb-0">
|
---|
80 | Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant
|
---|
81 | impression.
|
---|
82 | </p>
|
---|
83 | </div>
|
---|
84 |
|
---|
85 | <div class="col-md-2 col-lg-2 col-xl-2 mx-auto">
|
---|
86 | <h5>Informations</h5>
|
---|
87 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
88 | <ul class="list-unstyled">
|
---|
89 | <li><a href="">Link 1</a></li>
|
---|
90 | <li><a href="">Link 2</a></li>
|
---|
91 | <li><a href="">Link 3</a></li>
|
---|
92 | <li><a href="">Link 4</a></li>
|
---|
93 | </ul>
|
---|
94 | </div>
|
---|
95 |
|
---|
96 | <div class="col-md-3 col-lg-2 col-xl-2 mx-auto">
|
---|
97 | <h5>Others links</h5>
|
---|
98 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
99 | <ul class="list-unstyled">
|
---|
100 | <li><a href="">Link 1</a></li>
|
---|
101 | <li><a href="">Link 2</a></li>
|
---|
102 | <li><a href="">Link 3</a></li>
|
---|
103 | <li><a href="">Link 4</a></li>
|
---|
104 | </ul>
|
---|
105 | </div>
|
---|
106 |
|
---|
107 | <div class="col-md-4 col-lg-3 col-xl-3">
|
---|
108 | <h5>Contact</h5>
|
---|
109 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
110 | <ul class="list-unstyled">
|
---|
111 | <li><i class="fa fa-home mr-2"></i> My company</li>
|
---|
112 | <li><i class="fa fa-envelope mr-2"></i> email@example.com</li>
|
---|
113 | <li><i class="fa fa-phone mr-2"></i> + 33 12 14 15 16</li>
|
---|
114 | <li><i class="fa fa-print mr-2"></i> + 33 12 14 15 16</li>
|
---|
115 | </ul>
|
---|
116 | </div>
|
---|
117 | </div>
|
---|
118 | </div>
|
---|
119 | </footer>
|
---|
120 | </body>
|
---|
121 | </html>
|
---|