Initial commit
This commit is contained in:
24
site/en/admin/creditcards.view.php
Normal file
24
site/en/admin/creditcards.view.php
Normal file
@@ -0,0 +1,24 @@
|
||||
<h2>Administrate FTI: Credit Cards</h2>
|
||||
<p>
|
||||
Below is the credit card information for the card you selected.
|
||||
</p>
|
||||
<p>
|
||||
Return to
|
||||
<a href='/admin/creditcards.php'>credit card list</a>.
|
||||
</p>
|
||||
<p>
|
||||
<a href='/admin/creditcards.php?do=delete&id=<?php echo $this->data['card']['id'] ?>'>
|
||||
Delete this card
|
||||
</a>
|
||||
</p>
|
||||
<div class='admin_summary_box' id='creditcards_summary'>
|
||||
<h3>Credit Card Information</h3>
|
||||
<table class='data_table'>
|
||||
<?php foreach($this->data['card'] 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