✏️ 正在编辑: historico-corretor.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/corretor/historico-corretor.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<h1 class="tit_local">Histórico do Corretor</h1> <table> <thead> <tr class="top_list"> <th>Data</th> <th>Usuário</th> <th>Campo</th> <th>Antes</th> <th>Depois</th> <th>Endpoint</th> <th>IP</th> </tr> </thead> <tbody> <?php if (count($this->result)):?> <?php foreach ($this->result as $item): ?> <tr> <td><?php echo $this->formatDate($item->timestamp, 'd/m/Y H:i:s'); ?></td> <td><?php echo $item->username; ?></td> <td><?php echo $item->field; ?></td> <td><?php echo $item->old_data; ?></td> <td><?php echo $item->new_data; ?></td> <td><?php echo $item->endpoint; ?></td> <td><?php echo $item->ip; ?></td> </tr> <?php endforeach; ?> <?php else: ?> <tr> <td colspan="6">Nenhuma informação encontrada.</td> </tr> <?php endif;?> </tbody> </table>
💾 保存文件
← 返回文件管理器