{% set title %}{% trans "Name" %}{% endset %}
{% set helpText %}{% trans "An optional name for this widget" %}{% endset %}
{{ forms.input("name", title, "", helpText) }}
{% set title %}{% trans "Set a duration?" %}{% endset %}
{% set helpText %}{% trans "Select to provide a specific duration for this Widget" %}{% endset %}
{{ forms.checkbox("useDuration", title, 0, helpText) }}
{% set title %}{% trans "Duration" %}{% endset %}
{% set helpText %}{% trans "The duration in seconds this item should be displayed." %}{% endset %}
{{ forms.number("duration", title, module.getModule().defaultDuration, helpText, "duration-fields", "required") }}
{% set title %}{% trans "Use the Display Location" %}{% endset %}
{% set helpText %}{% trans "Use the location configured on the display" %}{% endset %}
{{ forms.checkbox("useDisplayLocation", title, 1, helpText) }}
{% set title %}{% trans "Latitude" %}{% endset %}
{% set helpText %}{% trans "The Latitude for this widget" %}{% endset %}
{{ forms.number("latitude", title, module.getOption("latitude"), helpText, "locationControls") }}
{% set title %}{% trans "Longitude" %}{% endset %}
{% set helpText %}{% trans "The Longitude for this widget" %}{% endset %}
{{ forms.number("longitude", title, module.getOption("longitude"), helpText, "locationControls") }}
{% set title %}{% trans "Weather Template" %}{% endset %}
{% set helpText %}{% trans "Select the template you would like to apply. This can be overridden using the check box below." %}{% endset %}
{{ forms.dropdown("templateId", "single", title, module.getOption("templateId"), module.templatesAvailable(), "id", "value", helpText, "template-selector-control selectPicker selectPickerWithImage", null, null, null, null, null, "image") }}
{% set title %}{% trans "Override the template?" %}{% endset %}
{% set helpText %}{% trans "Tick if you would like to override the template." %}{% endset %}
{{ forms.checkbox("overrideTemplate", title, 0, helpText) }}
{% set title %}{% trans "Original Width" %}{% endset %}
{% set helpText %}{% trans "This is the intended width of the template and is used to scale the Widget within its region when the template is applied." %}{% endset %}
{{ forms.number("widgetOriginalWidth", title, module.getOption("widgetOriginalWidth", undefined), helpText, "template-override-controls", "", "number") }}
{% set title %}{% trans "Original Height" %}{% endset %}
{% set helpText %}{% trans "This is the intended height of the template and is used to scale the Widget within its region when the template is applied." %}{% endset %}
{{ forms.number("widgetOriginalHeight", title, module.getOption("widgetOriginalHeight", undefined), helpText, "template-override-controls", "", "number") }}
{% set title %}{% trans "Template for Current Forecast" %}{% endset %}
{% set helpText %}{% trans "Enter the template for the current forecast. For a list of substitutions click Request Forecast below." %}{% endset %}
{{ forms.textarea("currentTemplate", title, "", helpText, "template-override-controls", "required", 10) }}
{% set title %}{% trans "Template for Daily Forecast" %}{% endset %}
{% set helpText %}{% trans "Enter the template for the daily forecast. Replaces [dailyForecast] in main template." %}{% endset %}
{{ forms.textarea("dailyTemplate", title, "", helpText, "template-override-controls", "", 10) }}
{% set title %}{% trans "CSS Style Sheet" %}{% endset %}
{% set helpText %}{% trans "Enter a CSS style sheet to style the weather widget" %}{% endset %}
{{ forms.textarea("styleSheet", title, "", helpText, "template-override-controls", "required", 10) }}
{% set title %}{% trans "Units" %}{% endset %}
{% set helpText %}{% trans "Select the units you would like to use." %}{% endset %}
{{ forms.dropdown("units", "single", title, module.getOption("units"), module.unitsAvailable(), "id", "value", helpText) }}
{% set title %}{% trans "Language" %}{% endset %}
{% set helpText %}{% trans "Select the language you would like to use." %}{% endset %}
{{ forms.dropdown("lang", "single", title, translate.jsShortLocale, module.supportedLanguages(), "id", "value", helpText) }}
{% set title %}{% trans "Update Interval (mins)" %}{% endset %}
{% set helpText %}{% trans "Please enter the update interval in minutes. This should be kept as high as possible. For example, if the data will only change once per hour this could be set to 60." %}{% endset %}
{{ forms.number("updateInterval", title, module.getOption("updateInterval", 60), helpText, "", "required") }}
{% set title %}{% trans "Only show Daytime weather conditions" %}{% endset %}
{% set helpText %}{% trans "Tick if you would like to only show the Daytime weather conditions." %}{% endset %}
{{ forms.checkbox("dayConditionsOnly", title, 1, helpText) }}
{% set title %}{% trans "Optional JavaScript" %}{% endset %}
{{ forms.textarea("javaScript", "", module.getRawNode("javaScript"), title, "", "", 10) }}