Added title headings to tables

这个提交包含在:
Corby Krick 2013-11-09 14:14:08 -06:00
父节点 fd7557a4c0
当前提交 a07e59dbc0
共有 2 个文件被更改,包括 8 次插入1 次删除

查看文件

@ -33,7 +33,7 @@ class eqsl extends CI_Controller {
if (count($records) > 0)
{
$table = "<table>";
$table .= "<tr>";
$table .= "<tr class=\"titles\">";
$table .= "<td>Date</td>";
$table .= "<td>Call</td>";
$table .= "<td>Mode</td>";

查看文件

@ -29,6 +29,13 @@ class Lotw extends CI_Controller {
$this->adif_parser->initialize();
$table = "<table>";
$table .= "<tr class=\"titles\">";
$table .= "<td>Date</td>";
$table .= "<td>Call</td>";
$table .= "<td>Mode</td>";
$table .= "<td>Log Status</td>";
$table .= "<td>LoTW Status</td>";
$table .= "<tr>";
while($record = $this->adif_parser->get_record())
{