blob: d81fb1dac4d4b9b9f29d83e17fe9831966834d08 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{{define "body-items"}}
<div class="editor-container">
<div class="editor-list" id="itemList">
<div class="search-bar"><input type="search" placeholder="Search items..." oninput="filterList(this.value)"></div>
<div id="listEntries"></div>
<button class="btn btn-primary btn-sm" style="margin-top:8px;width:100%" onclick="createNew()">+ New Item</button>
</div>
<div class="editor-main" id="editorMain">
<p style="color:#888;text-align:center;margin-top:60px">Select an item to edit</p>
</div>
</div>
<script src="/static/editor.js"></script>
<script src="/static/cardeditor.js"></script>
<script src="/static/intereditor.js"></script>
<script src="/static/dropview.js"></script>
<script src="/static/itemeditor.js"></script>
<script>
initItemEditor();
</script>
{{end}}
|