{% set title %}{% trans "Name" %}{% endset %}
{% set helpText %}{% trans "The Name for this Command" %}{% endset %}
{{ forms.input("command", title, command.command, helpText, "", "required") }}
{% set title %}{% trans "Reference" %}{% endset %}
{% set helpText %}{% trans "A reference code for this command which is used to identify the command internally." %}{% endset %}
{{ forms.disabled("code", title, command.code, helpText, "", "required") }}
{% set fieldId = "commandString" %}
{% set title %}{% trans "Command" %}{% endset %}
{% set helpText %}{% trans "The Command String for this Command. An override for this can be provided in Display Settings." %}{% endset %}
{{ forms.input(fieldId, title, command.commandString, helpText, "XiboCommand") }}
{% set fieldId = "validationString" %}
{% set title %}{% trans "Validation" %}{% endset %}
{% set helpText %}{% trans "The Validation String for this Command. An override for this can be provided in Display Settings." %}{% endset %}
{{ forms.input(fieldId, title, command.validationString, helpText) }}
{% set options = [
{ optionid: "android", option: "Android" },
{ optionid: "windows", option: "Windows" },
{ optionid: "lg", option: "webOS" },
{ optionid: "sssp", option: "Tizen" },
{ optionid: "linux", option: "Linux" },
] %}
{% set title %}{% trans "Available on" %}{% endset %}
{% set helpText %}{% trans "Leave empty if this command should be available on all types of Display." %}{% endset %}
{{ forms.dropdown("availableOn[]", "dropdownmulti", title, command.getAvailableOn(), options, "optionid", "option", helpText, "selectPicker") }}
{% set title %}{% trans "Description" %}{% endset %}
{% set helpText %}{% trans "This should be a textual description of what the command is trying to achieve. It should not be the command string." %}{% endset %}
{{ forms.textarea("description", title, command.description, helpText, "", "", 10) }}