regular delta before OS reinstall
This commit is contained in:
@@ -81,27 +81,31 @@ export default async function UploadRequestPage({ params, searchParams }) {
|
||||
<StatusMessage error={error} success={success} />
|
||||
|
||||
<section className="panel">
|
||||
<div className="info-stack compact-info">
|
||||
<div className="info-card">
|
||||
<strong>Status</strong>
|
||||
<span className="muted">
|
||||
{state === 'open' ? 'Offen' : state === 'completed' ? 'Bereits abgeschlossen' : 'Abgelaufen'}
|
||||
</span>
|
||||
</div>
|
||||
<div className="info-card">
|
||||
<strong>Erstellt</strong>
|
||||
<span className="muted">{formatTimestamp(requestEntry.created_at)}</span>
|
||||
</div>
|
||||
<div className="info-card">
|
||||
<strong>Gültig bis</strong>
|
||||
<span className="muted">{formatTimestamp(requestEntry.expires_at)}</span>
|
||||
</div>
|
||||
{requestEntry.note ? (
|
||||
<div className="info-card">
|
||||
<strong>Notiz</strong>
|
||||
<span className="muted">{requestEntry.note}</span>
|
||||
</div>
|
||||
) : null}
|
||||
<div className="table-wrap request-meta-wrap">
|
||||
<table className="request-meta-table">
|
||||
<tbody>
|
||||
<tr>
|
||||
<th>Status</th>
|
||||
<td>
|
||||
{state === 'open' ? 'Offen' : state === 'completed' ? 'Bereits abgeschlossen' : 'Abgelaufen'}
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Erstellt</th>
|
||||
<td>{formatTimestamp(requestEntry.created_at)}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th>Gültig bis</th>
|
||||
<td>{formatTimestamp(requestEntry.expires_at)}</td>
|
||||
</tr>
|
||||
{requestEntry.note ? (
|
||||
<tr>
|
||||
<th>Notiz</th>
|
||||
<td>{requestEntry.note}</td>
|
||||
</tr>
|
||||
) : null}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user