Current File : /home/users/barii/public_html/finansenl.com.pl/wodki/application/views/account/comment.php |
<?php if (isset($message)):?>
<div id="message-red" >
<table border="0" width="100%" cellpadding="0" cellspacing="0">
<tr>
<td class="red-left">
<?php echo $message;?>
</td>
<td class="red-right"><a class="close-red"><?php echo HTML::image('static/images/table/icon_close_red.gif');?></a></td>
</tr>
</table>
</div>
<?php endif;?>
<?php echo Message::render(); ?>
<div class="container">
<?php echo aurora::partial('frontend_sider'); ?>
<div id="content">
<h2><?php echo __t('Zarządzanie <span>profilem</span>'); ?>
</h2>
<p><?php echo __t('Witaj w strefie dostępnej dla użytkowników systemu'); ?></p>
<h2><?php echo __t('User <span>comments</span>'); ?></h2>
<table class="dataTable" id="listing">
<thead>
<tr>
<th width="700"><?php echo __t('Comment'); ?></th>
<th><?php echo __t('Akcja'); ?></th>
</tr>
</thead>
<tbody>
<?php $i=0; foreach( $comment as $row ) : $i++; ?>
<tr class="<?php echo $i%2==0 ? 'even' : ''; ?>">
<td><?php echo $row->description; ?></td>
<td>
<a href="account/comment/edit/<?php echo $row->id; ?>"><img src="html/images/action_edit.gif" alt="<?php echo __t('Edytuj'); ?>" title="<?php echo __t('Edytuj'); ?>"/></a>
<a href="account/comment/delete/<?php echo $row->id; ?>"><img src="html/images/action_delete.gif" alt="<?php echo __t('Usuń'); ?>" title="<?php echo __t('Usuń'); ?>"/></a>
</td>
</tr>
<?php endforeach; ?>
</tbody>
<tfoot>
<tr><th></th></tr>
</tfoot>
</table>
</div>
</div>
</div>