You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
404 B
15 lines
404 B
<div id="quick-notes">
|
|
<?php
|
|
$show_options = true;
|
|
foreach ($notes as $note) {
|
|
include STAFFINC_DIR."templates/note.tmpl.php";
|
|
} ?>
|
|
</div>
|
|
<div id="new-note-box">
|
|
<div class="quicknote" id="new-note" data-url="<?php echo $create_note_url; ?>">
|
|
<div class="body">
|
|
<a href="#"><i class="icon-plus icon-large"></i>
|
|
<?php echo __('Click to create a new note'); ?></a>
|
|
</div>
|
|
</div>
|
|
</div>
|