aboutsummaryrefslogtreecommitdiff
path: root/internal/admin/templates/techs.html
blob: 084d5643de2104ccc57002e641167cf3ee68df1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{{define "body-techs"}}
<div class="editor-container">
  <div class="editor-list" id="itemList">
    <div class="search-bar"><input placeholder="Search techs..." 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 Tech</button>
  </div>
  <div class="editor-main" id="editorMain">
    <p style="color:#888;text-align:center;margin-top:60px">Select a tech to edit</p>
  </div>
</div>
<script src="/static/editor.js"></script>
<script>initEditor('techs', [{key:'name',label:'Name',type:'text'},{key:'category',label:'Category',type:'text'},{key:'tier',label:'Tier',type:'number'},{key:'drain',label:'Drain Rate',type:'number'},{key:'bonus',label:'Bonus',type:'number'},{key:'description',label:'Description',type:'textarea'}]);</script>
{{end}}