mirror of
https://github.com/Prominence/car-repair-site.git
synced 2026-01-09 19:56:43 +03:00
Fixed layout.
This commit is contained in:
parent
35fdd08fc8
commit
fe6e34f9de
@ -47,7 +47,7 @@
|
||||
<td th:text="${client.lastName}"></td>
|
||||
<td th:text="${client.phoneNo}"></td>
|
||||
<td>
|
||||
<div class="btn-group pull-right">
|
||||
<div class="btn-group float-right">
|
||||
<a th:href="@{/client/edit/{id}(id=${client.id})}" class="btn btn-secondary" th:text="#{common.edit.button}"></a>
|
||||
<button type="button" class="btn btn-danger" th:onclick="'deleteClientById(' + ${client.id} + ')'" th:text="#{common.delete.button}"></button>
|
||||
</div>
|
||||
|
||||
@ -47,7 +47,7 @@
|
||||
<td th:text="${mechanic.lastName}"></td>
|
||||
<td th:text="${mechanic.hourlyPayment}"></td>
|
||||
<td>
|
||||
<div class="btn-group pull-right">
|
||||
<div class="btn-group float-right">
|
||||
<a th:href="@{/mechanic/statistics/{id}(id=${mechanic.id})}" class="btn btn-info" th:text="#{showStatistics.button}"></a>
|
||||
<a th:href="@{/mechanic/edit/{id}(id=${mechanic.id})}" class="btn btn-secondary" th:text="#{common.edit.button}"></a>
|
||||
<button type="button" class="btn btn-danger" th:onclick="'deleteMechanicById(' + ${mechanic.id} + ')'" th:text="#{common.delete.button}"></button>
|
||||
|
||||
@ -82,7 +82,7 @@
|
||||
<td th:text="${{order.orderStatus}}"></td>
|
||||
<td th:text="${{order.totalPrice}}"></td>
|
||||
<td style="break-inside: avoid">
|
||||
<div class="btn-group pull-right">
|
||||
<div class="btn-group float-right">
|
||||
<a th:href="@{/order/edit/{id}(id=${order.id})}" class="btn btn-secondary" th:text="#{common.edit.button}"></a>
|
||||
<button type="button" class="btn btn-danger" th:onclick="'deleteOrderById(' + ${order.id} + ')'" th:text="#{common.delete.button}"></button>
|
||||
</div>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user