Files
wavelog/application/views/notes/view.php
MatykoBr 7f3c0f8418 Added support for Markdown in Notes as requested in #936
Added EasyMDE instead of Quill as the editor, because it supports Markdown (requested in #936 ). Made the colors of the editor fit the colors of the selected theme.
2025-02-11 22:19:59 +01:00

26 lines
1.0 KiB
PHP

<div class="container notes">
<div class="card">
<?php foreach ($note->result() as $row) { ?>
<div class="card-header">
<h2 class="card-title"><?= __("Notes"); ?> - <?php echo $row->title; ?></h2>
<ul class="nav nav-tabs card-header-tabs">
<li class="nav-item">
<a class="nav-link" 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>
<div class="card-body">
<textarea name="content" style="display:none" id="notes_view"><?php echo $row->note; ?></textarea>
<a href="<?php echo site_url('notes/edit'); ?>/<?php echo $row->id; ?>" class="btn btn-primary"><i class="fas fa-edit"></i> <?= __("Edit Note"); ?></a>
<a href="<?php echo site_url('notes/delete'); ?>/<?php echo $row->id; ?>" class="btn btn-danger"><i class="fas fa-trash-alt"></i> <?= __("Delete Note"); ?></a>
<?php } ?>
</div
> </div>
</div>