2019-05-13 17:28:16 +00:00
|
|
|
<div class="container notes">
|
2011-06-17 12:52:00 +00:00
|
|
|
|
2019-10-05 20:57:44 +00:00
|
|
|
<div class="card">
|
|
|
|
<?php foreach ($note->result() as $row) { ?>
|
|
|
|
<div class="card-header">
|
2021-01-11 15:22:48 +00:00
|
|
|
<h2 class="card-title"><?php echo $this->lang->line('notes_menu_notes'); ?> - <?php echo $row->title; ?></h2>
|
2019-10-05 20:57:44 +00:00
|
|
|
<ul class="nav nav-tabs card-header-tabs">
|
|
|
|
<li class="nav-item">
|
2021-01-11 15:22:48 +00:00
|
|
|
<a class="nav-link" href="<?php echo site_url('notes'); ?>"><?php echo $this->lang->line('notes_menu_notes'); ?></a>
|
2019-10-05 20:57:44 +00:00
|
|
|
</li>
|
|
|
|
<li class="nav-item">
|
2021-01-11 15:22:48 +00:00
|
|
|
<a class="nav-link" href="<?php echo site_url('notes/add'); ?>"><?php echo $this->lang->line('notes_create_note'); ?></a>
|
2019-10-05 20:57:44 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2019-05-13 17:28:16 +00:00
|
|
|
<div class="card-body">
|
|
|
|
<p class="card-text"><?php echo nl2br($row->note); ?></p>
|
2011-11-06 23:09:51 +00:00
|
|
|
|
2021-01-11 15:22:48 +00:00
|
|
|
<a href="<?php echo site_url('notes/edit'); ?>/<?php echo $row->id; ?>" class="btn btn-primary"><i class="fas fa-edit"></i> <?php echo $this->lang->line('notes_input_btn_edit_note'); ?></a>
|
2019-05-13 17:28:16 +00:00
|
|
|
|
2021-01-11 15:22:48 +00:00
|
|
|
<a href="<?php echo site_url('notes/delete'); ?>/<?php echo $row->id; ?>" class="btn btn-danger"><i class="fas fa-trash-alt"></i> <?php echo $this->lang->line('notes_input_btn_delete_note'); ?></a>
|
2019-05-13 17:28:16 +00:00
|
|
|
<?php } ?>
|
|
|
|
</div
|
|
|
|
> </div>
|
2011-11-06 23:09:51 +00:00
|
|
|
|
|
|
|
</div>
|