21 lines
738 B
JavaScript
21 lines
738 B
JavaScript
export default `<table id="notesGrid" class="uk-table uk-table-small uk-table-responsive1 uk-table-striped uk-table-hover uk-table-divider">
|
|
<thead>
|
|
<tr>
|
|
<th>Title</th>
|
|
<th>Created</th>
|
|
<th>Category</th>
|
|
<th>Content</th>
|
|
<th>Dates</th>
|
|
<th></th>
|
|
<th class="icon icon-archive"></th>
|
|
<th class="icon icon-delete"></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
</tbody>
|
|
<tr>
|
|
<td colspan="8" class="uk-margin uk-text-right">
|
|
<button id="btnCreateNote" class="uk-button uk-button-primary" data-action="getEditForm">Create Note</button>
|
|
</td>
|
|
</tr>
|
|
</table>` |