Skip to content

Instantly share code, notes, and snippets.

@eminetto
Created August 3, 2013 17:51
Show Gist options
  • Select an option

  • Save eminetto/6147331 to your computer and use it in GitHub Desktop.

Select an option

Save eminetto/6147331 to your computer and use it in GitHub Desktop.
<?php
$title = 'Alunos';
$this->headTitle($title);
?>
<h1><?=$this->escapeHtml($title)?></h1>
<p>
<a href="<?=$this->url('aluno', array('action'=>'add'))?>">Novo aluno</a>
</p>
<table class="table">
<tr>
<th>Nome</th>
<th>&nbsp;</th>
</tr>
<?foreach ($this->alunos as $aluno):?>
<tr>
<td><?=$this->escapeHtml($aluno->nome)?></td>
<td>
<a href="<?=$this->url('aluno',
array('action'=>'edit', 'matricula' => $aluno->matricula))?>">Editar</a>
<a href="<?=$this->url('aluno',
array('action'=>'delete', 'matricula' => $aluno->matricula))?>">Remover</a>
</td>
</tr>
<? endforeach ?>
</table>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment