Files
Cloud-CMS/ui/src/templates/commandInput/main.hbs
Matt Batchelder 05ce0da296 Initial Upload
2025-12-02 10:32:59 -05:00

15 lines
793 B
Handlebars

<div class="form-check pull-right">
<input type="checkbox" class="show-command-preview form-check-input" id="showCommandPreview{{ unique }}" name="showCommandPreview{{ unique }}" title="{{trans.showCommandPreview}}">
<label for="showCommandPreview{{ unique }}" class="show-command-preview-label form-check-label">{{trans.showCommandPreview}}</label>
</div>
<select class="command-type form-control form-control-inline">
{{#each types}}
<option value="{{ @key }}" {{#eq @key ../type}}selected="selected"{{/eq}}>{{ this }}</option>
{{/each}}
</select>
<div class="command-inputs panel panel-default"></div>
<div disabled="disabled" class="command-preview bg-primary p-2 w-100" data-invalid-message="{{trans.invalidCommand}}">
<code class="text-white"></code>
</div>