Skip to content
Code-Schnipsel Gruppen Projekte
Commit a4bb8cca erstellt von Michael Danielczok's avatar Michael Danielczok
Dateien durchsuchen

fix(UserInvoices): update control to be compatible with the quiqqer/frontend-users version 2.4.0

Übergeordneter 9c93a365
No related branches found
No related tags found
2 Merge Requests!92Update 'next-3.x' with latest changes from 'main',!91refactor(phpstan): update usage of types for better clarity
Pipeline #14935 bestanden mit Phase
in 2 Minuten und 36 Sekunden
.quiqqer-invoice-profile-invoices {
float: left;
:where(.quiqqer-invoice-profile-invoices-table) {
width: 100%;
}
.quiqqer-invoice-profile-invoices-table {
float: left;
width: 100%;
}
.quiqqer-invoice-profile-invoices-table th {
:where(.quiqqer-invoice-profile-invoices-table th) {
padding: 5px;
text-align: left;
}
.quiqqer-invoice-profile-invoices-table td {
:where(.quiqqer-invoice-profile-invoices-table td) {
padding: 5px;
}
.quiqqer-invoice-profile-invoices-table th:last-child,
.quiqqer-invoice-profile-invoices-table td:last-child {
.quiqqer-invoice-profile-invoices-table-th-invoice-dl,
.quiqqer-invoice-profile-invoices-table-invoice-dl {
text-align: center;
width: 100px;
}
......@@ -27,6 +21,6 @@
width: 140px;
}
.quiqqer-invoice-profile-invoices-table tbody tr:nth-child(odd) {
:where(.quiqqer-invoice-profile-invoices-table tbody tr:nth-child(even)) {
background: #f8f8f8;
}
\ No newline at end of file
<h1>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.title"}
</h1>
<section class="quiqqer-frontendUsers-profile-section quiqqer-frontendUsers-section--userInvoices">
<h2>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.title"}
</h2>
<table class="quiqqer-invoice-profile-invoices-table">
{if count($invoices)}
<thead>
<tr>
<th>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.id"}
</th>
<th>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.date"}
</th>
<th>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.download"}
</th>
</tr>
</thead>
{/if}
<tbody>
{foreach $invoices as $Invoice}
<tr class="quiqqer-invoice-profile-invoices-table-invoice">
<td class="quiqqer-invoice-profile-invoices-table-invoice-id">
{$Invoice->getId()}
</td>
<td class="quiqqer-invoice-profile-invoices-table-invoice-date">
{$Invoice->getDate()}
</td>
<td class="quiqqer-invoice-profile-invoices-table-invoice-dl">
<a href="{$Invoice->getDownloadLink()}" target="_blank">
<span class="fa fa-file-pdf-o fa-file-pdf"></span>
</a>
</td>
</tr>
{foreachelse}
<tr>
<td colspan="3">
<div class="invoice-message-empty-invoices">
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.empty.message"}
</div>
</td>
</tr>
{/foreach}
</tbody>
</table>
<table class="quiqqer-invoice-profile-invoices-table">
{if count($invoices)}
<thead>
<tr>
<th>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.id"}
</th>
<th>
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.date"}
</th>
<th class="quiqqer-invoice-profile-invoices-table-th-invoice-dl">
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.download"}
</th>
</tr>
</thead>
{/if}
<tbody>
{foreach $invoices as $Invoice}
<tr class="quiqqer-invoice-profile-invoices-table-invoice">
<td class="quiqqer-invoice-profile-invoices-table-invoice-id">
{$Invoice->getId()}
</td>
<td class="quiqqer-invoice-profile-invoices-table-invoice-date">
{$Invoice->getDate()}
</td>
<td class="quiqqer-invoice-profile-invoices-table-invoice-dl">
<a href="{$Invoice->getDownloadLink()}" target="_blank">
<span class="fa fa-file-pdf-o fa-file-pdf"></span>
</a>
</td>
</tr>
{foreachelse}
<tr>
<td colspan="3">
<div class="invoice-message-empty-invoices">
{locale group="quiqqer/invoice" var="control.frontendUsers.invoices.table.empty.message"}
</div>
</td>
</tr>
{/foreach}
</tbody>
</table>
</section>
\ No newline at end of file
0% oder .
You are about to add 0 people to the discussion. Proceed with caution.
Bearbeitung dieser Nachricht zuerst beenden!
Bitte registrieren oder zum Kommentieren