Compare commits
2 commits
6ba55c000b
...
4e0bd86ae1
| Author | SHA1 | Date | |
|---|---|---|---|
| 4e0bd86ae1 | |||
| aeee6843ff |
1 changed files with 5 additions and 1 deletions
|
|
@ -72,7 +72,7 @@ $lateLoans = getLateLoans($pdo);
|
||||||
<br>
|
<br>
|
||||||
<label>Anzahl
|
<label>Anzahl
|
||||||
<br>
|
<br>
|
||||||
<input type="number" name="amount" value="1" required>
|
<input type="number" name="amount" min="1" value="1" required>
|
||||||
</label>
|
</label>
|
||||||
<br>
|
<br>
|
||||||
<br>
|
<br>
|
||||||
|
|
@ -207,6 +207,7 @@ $lateLoans = getLateLoans($pdo);
|
||||||
<td>
|
<td>
|
||||||
<h2>Verliehene Bücher</h2>
|
<h2>Verliehene Bücher</h2>
|
||||||
<table>
|
<table>
|
||||||
|
<th>ID</th>
|
||||||
<th>Vorname</th>
|
<th>Vorname</th>
|
||||||
<th>Nachname</th>
|
<th>Nachname</th>
|
||||||
<th>Klasse/Funktion</th>
|
<th>Klasse/Funktion</th>
|
||||||
|
|
@ -216,6 +217,7 @@ $lateLoans = getLateLoans($pdo);
|
||||||
<th>Rückgabe fällig</th>
|
<th>Rückgabe fällig</th>
|
||||||
<?php foreach ($activeLoans as $loan): ?>
|
<?php foreach ($activeLoans as $loan): ?>
|
||||||
<tr>
|
<tr>
|
||||||
|
<td>#<?= htmlspecialchars($loan['loanID']) ?></td>
|
||||||
<td><?= htmlspecialchars($loan['firstName']) ?></td>
|
<td><?= htmlspecialchars($loan['firstName']) ?></td>
|
||||||
<td><?= htmlspecialchars($loan['lastName']) ?></td>
|
<td><?= htmlspecialchars($loan['lastName']) ?></td>
|
||||||
<td><?= htmlspecialchars($loan['borrowerRole']) ?></td>
|
<td><?= htmlspecialchars($loan['borrowerRole']) ?></td>
|
||||||
|
|
@ -230,6 +232,7 @@ $lateLoans = getLateLoans($pdo);
|
||||||
<td>
|
<td>
|
||||||
<h2>Versäumte Rückgaben</h2>
|
<h2>Versäumte Rückgaben</h2>
|
||||||
<table>
|
<table>
|
||||||
|
<th>ID</th>
|
||||||
<th>Vorname</th>
|
<th>Vorname</th>
|
||||||
<th>Nachname</th>
|
<th>Nachname</th>
|
||||||
<th>Klasse/Funktion</th>
|
<th>Klasse/Funktion</th>
|
||||||
|
|
@ -239,6 +242,7 @@ $lateLoans = getLateLoans($pdo);
|
||||||
<th>Rückgabe fällig</th>
|
<th>Rückgabe fällig</th>
|
||||||
<?php foreach ($lateLoans as $lateLoan): ?>
|
<?php foreach ($lateLoans as $lateLoan): ?>
|
||||||
<tr>
|
<tr>
|
||||||
|
<td>#<?= htmlspecialchars($lateLoan['loanID']) ?></td>
|
||||||
<td><?= htmlspecialchars($lateLoan['firstName']) ?></td>
|
<td><?= htmlspecialchars($lateLoan['firstName']) ?></td>
|
||||||
<td><?= htmlspecialchars($lateLoan['lastName']) ?></td>
|
<td><?= htmlspecialchars($lateLoan['lastName']) ?></td>
|
||||||
<td><?= htmlspecialchars($lateLoan['borrowerRole']) ?></td>
|
<td><?= htmlspecialchars($lateLoan['borrowerRole']) ?></td>
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue