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">
|
---|
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-pacient"> 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-upati">
|
---|
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 | <div class="container mb-4">
|
---|
40 | <div class="row">
|
---|
41 | <div class="col-12">
|
---|
42 | <div class="table-responsive">
|
---|
43 | <table class="table table-striped">
|
---|
44 | <thead>
|
---|
45 | <tr>
|
---|
46 | <th scope="col"> Упат ИД</th>
|
---|
47 | <th scope="col"> Дијагноза </th>
|
---|
48 | <th scope="col"> Оддел ИД </th>
|
---|
49 | <th scope="col"> Оддел Назив </th>
|
---|
50 | </tr>
|
---|
51 | </thead>
|
---|
52 | <tbody>
|
---|
53 | <tr>
|
---|
54 | <td th:text="${upat.getUpat_id()}"></td>
|
---|
55 | <td th:text="${upat.getDijagnoza()}"></td>
|
---|
56 | <td th:text="${upat.getOddel().getOddel_id()}"></td>
|
---|
57 | <td th:text="${upat.getOddel().getNaziv()}"></td>
|
---|
58 | </tr>
|
---|
59 | </tbody>
|
---|
60 | </table>
|
---|
61 | </div>
|
---|
62 | </div>
|
---|
63 | </div>
|
---|
64 | </div>
|
---|
65 | <div class="container mb-4">
|
---|
66 | <h3> Листа на специјалисти </h3>
|
---|
67 | </div>
|
---|
68 | <div class="container mb-4">
|
---|
69 | <table class="table table-hover">
|
---|
70 | <thead>
|
---|
71 | <tr>
|
---|
72 | <th scope="col"></th>
|
---|
73 | <th scope="col"> ИД </th>
|
---|
74 | <th scope="col"> Име </th>
|
---|
75 | <th scope="col"> Презиме </th>
|
---|
76 | <th scope="col"> Број на лиценца </th>
|
---|
77 | <th scope="col"> Термини </th>
|
---|
78 | </tr>
|
---|
79 | </thead>
|
---|
80 | <tbody>
|
---|
81 | <tr th:each="doktor : ${upat.getOddel().getDoktorList()}">
|
---|
82 | <th scope="row"> • </th>
|
---|
83 | <td th:text="${doktor.getCovek_id()}"></td>
|
---|
84 | <td th:text="${doktor.getIme()}"></td>
|
---|
85 | <td th:text="${doktor.getPrezime()}"></td>
|
---|
86 | <td th:text="${doktor.getBr_licenca()}"></td>
|
---|
87 | <td class="text-left">
|
---|
88 | <a th:href="@{'/dostapni-termini/{id}' (id=${doktor.getCovek_id()})}" class="btn btn-sm btn-info">
|
---|
89 | <i class="fa fa-trash"> Прегледај термини </i>
|
---|
90 | </a>
|
---|
91 | </td>
|
---|
92 | </tr>
|
---|
93 | </tbody>
|
---|
94 | </table>
|
---|
95 | </div>
|
---|
96 | </form>
|
---|
97 |
|
---|
98 | <!-- Footer -->
|
---|
99 | <footer class="text-black-50 mt-xl-5">
|
---|
100 | <div class="container">
|
---|
101 | <div class="row">
|
---|
102 | <div class="col-md-3 col-lg-4 col-xl-3">
|
---|
103 | <h5>About</h5>
|
---|
104 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
105 | <p class="mb-0">
|
---|
106 | Le Lorem Ipsum est simplement du faux texte employé dans la composition et la mise en page avant
|
---|
107 | impression.
|
---|
108 | </p>
|
---|
109 | </div>
|
---|
110 |
|
---|
111 | <div class="col-md-2 col-lg-2 col-xl-2 mx-auto">
|
---|
112 | <h5>Informations</h5>
|
---|
113 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
114 | <ul class="list-unstyled">
|
---|
115 | <li><a href="">Link 1</a></li>
|
---|
116 | <li><a href="">Link 2</a></li>
|
---|
117 | <li><a href="">Link 3</a></li>
|
---|
118 | <li><a href="">Link 4</a></li>
|
---|
119 | </ul>
|
---|
120 | </div>
|
---|
121 |
|
---|
122 | <div class="col-md-3 col-lg-2 col-xl-2 mx-auto">
|
---|
123 | <h5>Others links</h5>
|
---|
124 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
125 | <ul class="list-unstyled">
|
---|
126 | <li><a href="">Link 1</a></li>
|
---|
127 | <li><a href="">Link 2</a></li>
|
---|
128 | <li><a href="">Link 3</a></li>
|
---|
129 | <li><a href="">Link 4</a></li>
|
---|
130 | </ul>
|
---|
131 | </div>
|
---|
132 |
|
---|
133 | <div class="col-md-4 col-lg-3 col-xl-3">
|
---|
134 | <h5>Contact</h5>
|
---|
135 | <hr class="bg-white mb-2 mt-0 d-inline-block mx-auto w-25">
|
---|
136 | <ul class="list-unstyled">
|
---|
137 | <li><i class="fa fa-home mr-2"></i> My company</li>
|
---|
138 | <li><i class="fa fa-envelope mr-2"></i> email@example.com</li>
|
---|
139 | <li><i class="fa fa-phone mr-2"></i> + 33 12 14 15 16</li>
|
---|
140 | <li><i class="fa fa-print mr-2"></i> + 33 12 14 15 16</li>
|
---|
141 | </ul>
|
---|
142 | </div>
|
---|
143 | </div>
|
---|
144 | </div>
|
---|
145 | </footer>
|
---|
146 | </body>
|
---|
147 | </html>
|
---|