Cleaned up the radio interface delete button

这个提交包含在:
Peter Goodhall 2019-06-13 18:09:21 +01:00
父节点 c676a35b21
当前提交 8635724568

查看文件

@ -50,7 +50,7 @@
} }
$phpdate = strtotime($row->timestamp); $phpdate = strtotime($row->timestamp);
echo "<td>".date('H:i:s d-m-y', $phpdate)."</td>" ; echo "<td>".date('H:i:s d-m-y', $phpdate)."</td>" ;
echo "<td><a href=\"".site_url('radio/delete')."/".$row->id."\" ><img src=\"".base_url()."/images/delete.png\" width=\"16\" height=\"16\" alt=\"Delete\" /></a></td>" ; echo "<td><a href=\"".site_url('radio/delete')."/".$row->id."\" class=\"btn btn-danger\"> <i class=\"fas fa-trash-alt\"></i> Delete</a></td>" ;
echo "</tr>"; echo "</tr>";
} }
} else { } else {