{extends file="$layouts_admin"} {block name="content"} <div class="row"> <div class="col-lg-12"> <div class="panel"> <div class="panel-hdr"> <h2>{$_L['Records']} {$paginator['found']} . {$_L['Page']} {$paginator['page']} {$_L['of']} {$paginator['lastpage']}. </h2> </div> <div class="panel-container"> <div class="panel-content" id="application_ajaxrender"> <table class="table table-bordered sys_table" id="sys_logs"> <thead> <tr> <th width="5%">{$_L['ID']}</th> <th>{$_L['Date']}</th> <th>{$_L['Sent To']}</th> <th width="60%">{$_L['Message']}</th> <th>{$_L['Manage']}</th> </tr> </thead> <tbody> {foreach $d as $ds} <tr> <td>{$ds['id']}</td> <td>{date( $config['df'], strtotime($ds['created_at']))}</td> <td>{urldecode($ds['sms_to'])}</td> <td>{urldecode($ds['sms'])}</td> <td><a href="{$_url}delete/sms/{$ds['id']}/" class="btn btn-danger btn-sm"><i class="fal fa-trash"></i> {$_L['Delete']}</a></td> </tr> {/foreach} </tbody> </table> {$paginator['contents']} </div> </div> </div> </div> </div> {/block}