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.
25 lines
1.1 KiB
25 lines
1.1 KiB
<div class="quicknote" data-id="<?php echo $note->id; ?>">
|
|
<div class="header">
|
|
<div class="header-left">
|
|
<i class="note-type icon-<?php echo $note->getExtIconClass(); ?>"i
|
|
title="<?php echo $note->getIconTitle(); ?>"></i>
|
|
<?php echo $note->getFormattedTime(); ?>
|
|
</div>
|
|
<div class="header-right">
|
|
<?php
|
|
$staff = $note->getStaff();
|
|
echo $staff ? $staff->getName() : _('Staff');
|
|
if (isset($show_options) && $show_options) { ?>
|
|
<div class="options no-pjax">
|
|
<a href="#" class="action edit-note" title="edit"><i class="icon-pencil"></i></a>
|
|
<a href="#" class="action save-note" style="display:none" title="save"><i class="icon-save"></i></a>
|
|
<a href="#" class="action cancel-edit" style="display:none" title="undo"><i class="icon-undo"></i></a>
|
|
<a href="#" class="action delete" title="delete"><i class="icon-trash"></i></a>
|
|
</div>
|
|
<?php } ?>
|
|
</div>
|
|
</div>
|
|
<div class="body editable">
|
|
<?php echo $note->display(); ?>
|
|
</div>
|
|
</div>
|