✏️ 正在编辑: index.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/grupo-documento/index.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Grupo de Documento</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <?php if( $this->paginator ): ?> <table summary="GruposDocumentos"> <thead> <tr class="top_list"> <th>Nome</th> <th colspan="2"></th> </tr> </thead> <tfoot> <tr> <!-- This sets up the pagination controls partial --> <td colspan="3"><?php echo $this->paginator ?></td> </tr> </tfoot> <tbody> <?php if( $this->paginator->getTotalItemCount() == 0 ): ?> <tr> <td colspan="3">Nenhum grupo encontrado.</td> </tr> <?php else: foreach ( $this->paginator as $grupo ): ?> <tr> <td><?php echo $grupo['descricao'] ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'save', 'id' => $grupo['id'] )) ?>" class="link_edit"></a></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete', 'id' => $grupo['id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; endif ?> </tbody> </table> <?php endif; ?> </div>
💾 保存文件
← 返回文件管理器