Initial commit
This commit is contained in:
24
site/en/admin/passports.view.php
Normal file
24
site/en/admin/passports.view.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user