{% set title %}{% trans "Name" %}{% endset %}
{% set helpText %}{% trans "The Name for this Command" %}{% endset %}
{{ forms.input("command", title, "", 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.input("code", title, "", 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, "", 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, "", 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, "", 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, "", helpText, "", "", 10) }}