✏️ 正在编辑: index.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/callcenter-pausas-programadas/index.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Listar Pausas Programadas</h1> <div id="filter"> <?php echo $this->form; ?> <div class="clear"></div> </div> <div id="view-content"> <table> <thead> <tr class="top_list"> <th>Usuário</th> <th>Motivo</th> <th>Hora da Pausa</th> <th colspan="2"></th> </tr> </thead> <tbody> <?php if( $this->listaPausas ): ?> <?php foreach ($this->listaPausas as $pausa): ?> <tr> <td><?php echo $pausa['nome'] ?? 'TODOS' ; ?></td> <td><?php echo $pausa['descricao'] ?></td> <td><?php echo Zend_Date::now()->setTime(0)->setMinute($pausa['hora_pausa'])->get('HH:mm') ?></td> <td align="center"><a href="<?php echo $this->url(['action' => 'save', 'id' => $pausa['id']]) ?>" class="link_edit"></a></td> <td align="center"><a href="<?php echo $this->url(['action' => 'delete', 'id' => $pausa['id']]) ?>" class="link_remove"></a></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="5" style="text-align: center">Nenhum registro encontrado.</td> </tr> <?php endif; ?> </tbody> </table> </div>
💾 保存文件
← 返回文件管理器