clipbucket/upload/admin_area/styles/cbv3/layout/blocks/home/notes.html
Arslan Hassan 8b885f7fd8 Added : Admin home block files
Added : lionbars
2012-08-08 15:55:09 +00:00

19 lines
No EOL
768 B
HTML

<textarea class="note-textarea" id="note-text" placeholder="add new note.."></textarea>
<input type="button" class="btn btn-primary note-add-btn text-center"
data-loading-text="Adding note..." value="Add note"
onclick="add_note();"/>
{assign var=notes value=$myquery->get_notes()}
<table class="table table-striped table-condensed stats">
<tbody id="notes-container">
{if $notes}
{foreach from=$notes item=note}
<tr id="note-{$note.note_id}">
<td>{$note.note|nl2br}</td>
<td width="20"><a href="javascript:void(0)" class="icon-trash"
onclick="delete_note('{$note.note_id}')"></a></td>
</tr>
{/foreach}
{/if}
</tbody>
</table>