25 lines
681 B
PHP
25 lines
681 B
PHP
<h2>Administrate FTI: Passports</h2>
|
|
<p>
|
|
Below is the passport information for the passport you selected.
|
|
</p>
|
|
<p>
|
|
Return to
|
|
<a href='/admin/passports.php'>passport list</a>.
|
|
</p>
|
|
<p>
|
|
<a href='/admin/passports.php?do=delete&id=<?php echo $this->data['passport']['id'] ?>'>
|
|
Delete this passport
|
|
</a>
|
|
</p>
|
|
<div class='admin_summary_box' id='passports_summary'>
|
|
<h3>Passport Information</h3>
|
|
<table class='data_table'>
|
|
<?php foreach($this->data['passport'] as $key => $val): ?>
|
|
<tr>
|
|
<td class='data_key'><?php echo ucfirst(str_replace('_',' ',$key)) ?></td>
|
|
<td class='data_value'><?php echo $val ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|
|
</div>
|