changes
This commit is contained in:
@@ -51,46 +51,6 @@
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<section class="panel">
|
||||
<h2>Instanz-Anfragen</h2>
|
||||
<p>Hier siehst du den Status deiner angeforderten Instanzen/Buchungen, die vom Admin geprüft werden.</p>
|
||||
</section>
|
||||
|
||||
<section class="table-wrap">
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Anfrage</th>
|
||||
<th>Paket</th>
|
||||
<th>Subdomain</th>
|
||||
<th>Betrag</th>
|
||||
<th>Status</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for prov in instance_requests %}
|
||||
<tr>
|
||||
<td>{{ prov.booking_number or prov.booking_number }}</td>
|
||||
<td>{{ prov.package_label or prov.package }}</td>
|
||||
<td>{{ prov.subdomain }}</td>
|
||||
<td>{{ '%.2f'|format(prov.amount_eur or 0) }} EUR</td>
|
||||
<td>
|
||||
{{ prov.provision_status or 'not_started' }}
|
||||
<form method="post" action="{{ url_for('instance_request_delete') }}" style="display:inline-block; margin-left:0.6rem;">
|
||||
<input type="hidden" name="prov_id" value="{{ prov.id }}">
|
||||
<button type="submit" class="danger">Löschen</button>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
{% else %}
|
||||
<tr>
|
||||
<td colspan="5">Keine Provisionierungsanfragen vorhanden.</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
|
||||
<style>
|
||||
.panel { margin-bottom: 1rem; }
|
||||
.table-wrap { background: #fff; border: 1px solid #d8e1e8; border-radius: 14px; padding: 1rem; overflow-x: auto; }
|
||||
|
||||
Reference in New Issue
Block a user