19 lines
880 B
Plaintext
Executable File
19 lines
880 B
Plaintext
Executable File
<h1>Comments</h1>
|
|
<p>Switch view to: <a href="<?php echo $html->url('/admin/'); ?>">Parties»</a> <a href="<?php echo $html->url('/admin/users'); ?>">Users»</a></p>
|
|
<table>
|
|
<tr>
|
|
<td>ID</td>
|
|
<td>Text</td>
|
|
<td></td>
|
|
<td></td>
|
|
</tr>
|
|
<?php foreach($comments as $comment): ?>
|
|
<tr>
|
|
<td><a href="<?php echo $html->url('/parties/view/'.$comment['Comment']['assoc'].'#c'.$comment['Comment']['id']); ?>"><?php echo $comment['Comment']['id']; ?></a></td>
|
|
<td><?php echo $comment['Comment']['text']; ?></td>
|
|
<td><a href="<?php echo $html->url('/admin/edit/comment/'.$comment['Comment']['id']); ?>">Edit</a></td>
|
|
<td><a href="<?php echo $html->url('/admin/delete/comment/'.$comment['Comment']['id']); ?>" onclick="return confirm('Delete comment <?php echo $comment['Comment']['id']; ?>?')">Delete</a></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</table>
|