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