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