Created
November 8, 2012 12:15
-
-
Save eminetto/4038458 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="actions clearfix"> | |
<div class="btns"> | |
<a class="btn submit" href="/admin/user/save" title="Criar Usuário">Criar Usuário</a> | |
</div> | |
</div> | |
<label class="divisor"><span>Lista de Usuários</span></label> | |
<table class="datatable"> | |
<thead> | |
<tr> | |
<th>Nome</th> | |
<th>Login</th> | |
<th width="120" class="center">Opções</th> | |
</tr> | |
</thead> | |
<tbody> | |
<?php foreach($users as $user):?> | |
<tr> | |
<td><?php echo $this->escapeHtml($user->name);?></td> | |
<td><?php echo $this->escapeHtml($user->username);?></td> | |
<td class="center"> | |
<a href="/admin/user/save/id/<?php echo $user->id ;?>" title="Editar" class="btn"><i class="icon-edit"></i></a> | |
<a href="/admin/user/delete/id/<?php echo $user->id;?>" rel="confirmation" title="Deseja excluir este registro?" class="btn"><i class="icon-remove"></i></a> | |
</td> | |
</tr> | |
<?php endforeach;?> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment