mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
Replace incorrect </td> tags with </th> tags Signed-off-by: canyonknight <canyonknight@gmail.com> Signed-off-by: Lukas Fleischer <archlinux@cryptocrack.de>
55 lines
1.5 KiB
PHP
55 lines
1.5 KiB
PHP
<table class="arch-bio-entry">
|
|
<tr>
|
|
<td>
|
|
<h3><?= htmlspecialchars($row["Username"], ENT_QUOTES) ?></h3>
|
|
<table class="bio">
|
|
<tr>
|
|
<th><?= __("Username") . ":" ?></th>
|
|
<td><?= $row["Username"] ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= __("Account Type") . ":" ?></th>
|
|
<td>
|
|
<?php
|
|
if ($row["AccountType"] == "User") {
|
|
print __("User");
|
|
} elseif ($row["AccountType"] == "Trusted User") {
|
|
print __("Trusted User");
|
|
} elseif ($row["AccountType"] == "Developer") {
|
|
print __("Developer");
|
|
}
|
|
?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= __("Email Address") . ":" ?></th>
|
|
<td><a href="mailto:<?= htmlspecialchars($row["Email"], ENT_QUOTES) ?>"><?= htmlspecialchars($row["Email"], ENT_QUOTES) ?></a></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= __("Real Name") . ":" ?></th>
|
|
<td><?= htmlspecialchars($row["RealName"], ENT_QUOTES) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= __("IRC Nick") . ":" ?></th>
|
|
<td><?= htmlspecialchars($row["IRCNick"], ENT_QUOTES) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= __("PGP Key Fingerprint") . ":" ?></th>
|
|
<td><?= html_format_pgp_fingerprint($row["PGPKey"]) ?></td>
|
|
</tr>
|
|
<tr>
|
|
<th><?= __("Last Voted") . ":" ?></th>
|
|
<td>
|
|
<?= $row["LastVoted"] ? date("Y-m-d", $row["LastVoted"]) : __("Never"); ?>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<th>Links:</th>
|
|
<td>
|
|
<a href="<?= get_uri('/packages/'); ?>?K=<?= $row['Username'] ?>&SeB=m"><?= __("View this user's packages") ?></a>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</td>
|
|
</tr>
|
|
</table>
|