mirror of
https://github.com/pcvolkmer/etl-processor.git
synced 2025-07-04 07:22:55 +00:00
feat: show info if no requests present
This commit is contained in:
@ -619,6 +619,10 @@ input.inline:focus-visible {
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.notification.info {
|
||||
color: var(--bg-blue);
|
||||
}
|
||||
|
||||
.notification.success {
|
||||
color: var(--bg-green);
|
||||
}
|
||||
|
@ -18,7 +18,11 @@
|
||||
</h2>
|
||||
</div>
|
||||
|
||||
<div class="border">
|
||||
<div class="border" th:if="${requests.totalElements == 0}">
|
||||
<div class="notification info">Noch keine Anfragen eingegangen</div>
|
||||
</div>
|
||||
|
||||
<div class="border" th:if="${requests.totalElements > 0}">
|
||||
<div th:if="${patientId == null}" class="page-control">
|
||||
<a id="first-page-link" th:href="@{/(page=${0})}" title="Zum Anfang: Taste W" th:if="${not requests.isFirst()}">⇤</a><a th:if="${requests.isFirst()}">⇤</a>
|
||||
<a id="prev-page-link" th:href="@{/(page=${requests.getNumber() - 1})}" title="Seite zurück: Taste A" th:if="${not requests.isFirst()}">←</a><a th:if="${requests.isFirst()}">←</a>
|
||||
|
Reference in New Issue
Block a user