2019-05-14 01:28:16 +08:00
< div class = " container notes " >
2011-06-17 20:52:00 +08:00
2019-05-14 01:28:16 +08:00
< div class = " card " >
2019-10-06 04:57:44 +08:00
< div class = " card-header " >
< h2 class = " card-title " > Notes </ h2 >
< ul class = " nav nav-tabs card-header-tabs " >
< li class = " nav-item " >
< a class = " nav-link active " href = " <?php echo site_url('notes'); ?> " > Notes </ a >
</ li >
< li class = " nav-item " >
< a class = " nav-link " href = " <?php echo site_url('notes/add'); ?> " > Create Note </ a >
</ li >
</ ul >
</ div >
2019-05-14 01:28:16 +08:00
< div class = " card-body " >
2011-06-17 20:52:00 +08:00
2019-05-14 01:28:16 +08:00
< ? php
2011-06-17 20:52:00 +08:00
2019-05-14 01:28:16 +08:00
if ( $notes -> num_rows () > 0 )
2011-11-07 07:09:51 +08:00
{
2019-05-14 01:28:16 +08:00
echo " <h3>Your Notes</h3> " ;
echo " <ul class= \" list-group \" > " ;
foreach ( $notes -> result () as $row )
{
echo " <li class= \" list-group-item \" > " ;
echo " <a href= \" " . site_url () . " /notes/view/ " . $row -> id . " \" > " . $row -> title . " </a> " ;
echo " </li> " ;
}
echo " </ul> " ;
} else {
echo " <p>You don't currently have any notes, these are a fantastic way of storing data like ATU settings, beacons and general station notes and its better than paper as you can't lose them!</p> " ;
2011-11-07 07:09:51 +08:00
}
2019-05-14 01:28:16 +08:00
?>
2011-11-07 07:09:51 +08:00
</ div >
</ div >
2018-12-18 07:05:29 +08:00
</ div >