✏️ 正在编辑: enderecos.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter/enderecos.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<table> <thead> <tr class="top_list"> <th>Endereço</th> <th>Número</th> <th>Complemento</th> <th>Bairro</th> <th>Cidade</th> <th>UF</th> <th>CEP</th> <th colspan="3"></th> </tr> </thead> <tbody> <?php if(count($this->enderecos)): foreach($this->enderecos as $endereco): ?> <tr id='fone-<?php echo $endereco['id']; ?>'> <td><?php echo $endereco['endereco']; ?></td> <td><?php echo $endereco['numero']; ?></td> <td><?php echo $endereco['complemento']; ?></td> <td><?php echo $endereco['bairro']; ?></td> <td><?php echo $endereco['cidade']; ?></td> <td><?php echo $endereco['uf']; ?></td> <td><?php echo $endereco['cep']; ?></td> <td align="center"><a href="javascript:void()" onclick="removeItem('fone-<?php echo $endereco['id']; ?>', '<?php echo $this->url(array( 'action' => 'delete-endereco', 'id' => $endereco['id'])); ?>')" title="Excluir endereço" class="link_remove"></a> </td> </tr> <?php endforeach; endif; ?> </tbody> </table>
💾 保存文件
← 返回文件管理器