This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
Files
notes_list/src/templates/grid.js
2021-10-06 20:52:35 +03:00

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>`