✏️ 正在编辑: save-historico.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/funcionario/save-historico.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<div id="filter"> <?php echo $this->formHistorico; ?> <div class="clear"></div> </div> <div id="view-content"> <?php if( $this->pagHistorico ): ?> <table summary="Dependentes"> <thead> <tr class="top_list"> <th>Tipo</th> <th>Data Inicial</th> <th>Data Final</th> <th>Motivo</th> <th colspan="2"></th> </tr> </thead> <tbody> <?php if( count($this->pagHistorico) == 0 ): ?> <tr> <td colspan="7">Nenhum histórico encontrado.</td> </tr> <?php else: foreach ( $this->pagHistorico as $historico ): ?> <tr> <td><?php echo $historico['tipo'] ?></td> <td><?php echo $this->dateFormat($historico['data_inicial']); ?></td> <td><?php echo $this->dateFormat($historico['data_final']); ?></td> <td><?php echo $historico['obs']; ?></td> <td align="center"><a href="<?php echo $this->url(array( 'action' => 'delete-historico', 'id' => $historico['id'], 'func' => $historico['fornecedor_id'] )) ?>" class="link_remove"></a></td> </tr> <?php endforeach; endif ?> </tbody> <tfoot> <?php $qtde = count($this->pagHistorico); if( $qtde > 0 ): ?> <tr> <td>Total <?php echo $qtde; ?></td> <?php endif ?> </tr> </tfoot> </table> <?php endif; ?> </div>
💾 保存文件
← 返回文件管理器