✏️ 正在编辑: tabelas.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/campanha/tabelas.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php echo $this->form_tabela; ?> <div class="clear"></div> <div id="view-content"> <?php if( $this->tabelas ): ?> <table summary="Tabelas"> <thead> <tr class="top_list"> <th>Nome</th> <th></th> </tr> </thead> <tbody> <?php if( count($this->tabelas) <= 0 ): ?> <tr> <td colspan="2">Nenhum resgate encontrado.</td> </tr> <?php else: foreach ( $this->tabelas as $tabela ): ?> <?php $t = $tabela->findParentRow('Model_DbTable_Tabela'); ?> <tr> <td><?php echo $t['nome'] ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete-tabela', 'id' => $tabela['id'], 'campanha_id' => $tabela['campanha_id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; endif ?> </tbody> </table> <?php endif; ?> </div>
💾 保存文件
← 返回文件管理器