✏️ 正在编辑: faixa-valores.phtml
路径:
/srv/systems_dir/yuppiecred/application/views/scripts/campanha/faixa-valores.phtml
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?= $this->faixaValores; ?> <div class="clear"></div> <div id="view-content"> <?php if( $this->valores ): ?> <table summary="Convenios"> <thead> <tr class="top_list"> <th>Nome</th> <th>Valor Inicial</th> <th>Valor Final</th> <th></th> </tr> </thead> <tbody> <?php foreach ($this->valores as $valor ):?> <tr> <td><?= $valor['nome'] ?></td> <td><?= number_format($valor['valor_inicial'],2,',','.') ?></td> <td><?= number_format($valor['valor_final'],2,',','.') ?></td> <td align="center"> <a href="<?= $this->url(array( 'action' => 'delete-faixa-valor', 'id' => $valor['id'], 'campanha_id' => $valor['campanha_id'] )) ?>" class="link_remove"> </a> </td> </tr> <?php endforeach;endif?> </tbody> </table> </div>
💾 保存文件
← 返回文件管理器