✏️ 正在编辑: _agenda.phtml
路径:
/srv/systems_dir/yuppiecred-bkp/application/views/scripts/callcenter/_agenda.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h2 align="center">Agenda</h2> <div class="container-box"> <table class="aniversariantes-do-dia"> <thead> <tr> <th>Campanha</th> <th>Nome</th> <th>CPF</th> <th>Data Agendada</th> <th>Hora Agendada</th> <th colspan="1"></th> </tr> </thead> <?php if( count($this->agenda) > 0 ): ?> <?php foreach ( $this->agenda as $agenda ): ?> <tbody> <tr> <td align="center"><?php echo $agenda['campanha'] ?></td> <td align="center"><?php echo $agenda['nome'] ?></td> <td align="center"><?php echo String_Refatorar::resetCpf($agenda['cpf']) ?></td> <td align="center"><?php echo $this->dateFormat($agenda['agendado_para']) ?></td> <td align="center"><?php echo $agenda['hora_agendada'] ?></td> <td><a href="<?php echo $this->url(array('controller' => 'callcenter', 'action' => 'exibir-cliente', 'id' => $agenda['id'])); ?>" title="Atender Cliente" class="link_client"></a></td> </tr> </tbody> <?php endforeach; ?> <?php endif; ?> </table> </div>
💾 保存文件
← 返回文件管理器