open-assets/client/LocationTypes/locationTypes.html

24 lines
750 B
HTML
Raw Permalink Normal View History

2026-01-24 13:49:38 -06:00
<template name="locationTypes">
<h1>Location Type Setup</h1>
<div class="grid">
<div>
<label for="typeName">Location Type Name *</label>
<input type="text" class="typeName" id="typeName" required />
</div>
<div>
<label for="typeDesc">Location Type Description</label>
<input type="text" class="typeDesc" id="typeDesc" />
</div>
</div>
<div class="grid">
2026-01-27 12:42:20 -06:00
<div>
<button class="secondary" id="importLocationTypes">Import from CSV</button>
</div>
2026-01-24 13:49:38 -06:00
<div>
<button class="primary right" id="saveLocationType">Save</button>
</div>
</div>
<hr>
{{> locationTypeTbl}}
{{> snackbar}}
</template>