Formatierung angepasst

This commit is contained in:
hubobel 2026-06-25 17:04:02 +02:00
parent 4fa554ed57
commit b1b941c82a
2 changed files with 47 additions and 34 deletions

View file

@ -431,4 +431,18 @@ text-decoration: underline;
.automation-card { .automation-card {
grid-column: 1 / -1; grid-column: 1 / -1;
} }
# .action-column {
text-align: right;
}
.automation-table {
width: 100%;
}
.automation-table .action-column {
text-align: right;
width: 220px;
}
.automation-table .action-column {
text-align: right;
width: 180px;
}

View file

@ -213,18 +213,18 @@
<h2>Automatisierung</h2> <h2>Automatisierung</h2>
<table class="category-table"> <table class="category-table automation-table">
<tr> <tr>
<th>Script</th> <th>Script</th>
<th>Cron</th> <th>Cron</th>
<th style="text-align:right;">Aktion</th> <th class="action-column">Aktion</th>
</tr> </tr>
<tr> <tr>
<td>balance.py</td> <td>balance.py</td>
<td>{{ cron_jobs.balance }}</td> <td>{{ cron_jobs.balance }}</td>
<td style="text-align:right;"> <td class="action-column">
<a href="/maintenance/run/balance"> <a href="/maintenance/run/balance">
<button>Jetzt ausführen</button> <button>Jetzt ausführen</button>
</a> </a>
@ -234,7 +234,7 @@
<tr> <tr>
<td>transactions.py</td> <td>transactions.py</td>
<td>{{ cron_jobs.transactions }}</td> <td>{{ cron_jobs.transactions }}</td>
<td style="text-align:right;"> <td class="action-column">
<a href="/maintenance/run/transactions"> <a href="/maintenance/run/transactions">
<button>Jetzt ausführen</button> <button>Jetzt ausführen</button>
</a> </a>
@ -244,14 +244,13 @@
<tr> <tr>
<td>categorize_transactions.py</td> <td>categorize_transactions.py</td>
<td>{{ cron_jobs.categorize }}</td> <td>{{ cron_jobs.categorize }}</td>
<td style="text-align:right;"> <td class="action-column">
<a href="/maintenance/run/categorize"> <a href="/maintenance/run/categorize">
<button>Jetzt ausführen</button> <button>Jetzt ausführen</button>
</a> </a>
</td> </td>
</tr> </tr>
</table> </table>
</div> </div>