23 lines
912 B
PHP
23 lines
912 B
PHP
<h2>Administrate FTI: Links and Numbers</h2>
|
|
<p>
|
|
Below is a list of all the links and numbers items on the Links and
|
|
Numbers page of FTI. You can add, edit or delete links and numbers items.
|
|
</p>
|
|
<div class='admin_summary_box' id='news_summary'>
|
|
<h3>All Links and Numbers Items</h3>
|
|
<p>
|
|
<a href='/admin/linksandnumbers.php?do=add'>Add Links and Number Item</a>
|
|
</p>
|
|
<table class='summary_table'>
|
|
<?php for($c = 0; $c < count($this->data['linksandnumbers']); $c++): ?>
|
|
<tr>
|
|
<td class='summary_data'><?php echo $this->data['linksandnumbers'][$c]->title ?></td>
|
|
<td class='summary_actions'>
|
|
<a href='/admin/linksandnumbers.php?do=edit&id=<?php echo $this->data['linksandnumbers'][$c]['id'] ?>'>Edit</a>
|
|
<a href='/admin/linksandnumbers.php?do=delete&id=<?php echo $this->data['linksandnumbers'][$c]['id'] ?>'>Delete</a>
|
|
</td>
|
|
</tr>
|
|
<?php endfor; ?>
|
|
</table>
|
|
</div>
|