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