{% set title %}{% trans "Name" %}{% endset %}
{% set helpText %}{% trans "An optional name for this widget" %}{% endset %}
{{ forms.input("name", title, module.getOption("name"), 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, module.getUseDuration(), helpText) }}
{% set title %}{% trans "Duration" %}{% endset %}
{% set helpText %}{% trans "The duration in seconds this item should be displayed." %}{% endset %}
{{ forms.number("duration", title, module.getDuration(), helpText, "duration-fields", "required") }}
{% set title %}{% trans "Enable Stats Collection?" %}{% endset %}
{% set helpText %}{% trans "Enable the collection of Proof of Play statistics for this Widget. Ensure that ‘Enable Stats Collection’ is set to ‘On’ in the Display Settings." %}{% endset %}
{% set offOption %}{% trans "Off" %}{% endset %}
{% set onOption %}{% trans "On" %}{% endset %}
{% set inheritOption %}{% trans "Inherit" %}{% endset %}
{% set options = [
{ id: "Off", value: offOption },
{ id: "On", value: onOption },
{ id: "Inherit", value: inheritOption }
] %}
{{ forms.dropdown("enableStat", "single", title, module.getOption("enableStat", theme.getSetting("WIDGET_STATS_ENABLED_DEFAULT")), options, "id", "value", helpText) }}
{% set title %}{% trans "Weather type" %}{% endset %}
{% set helpText %}{% trans "Choose between the current or forecast views" %}{% endset %}
{% set currentText %}{% trans "Current" %}{% endset %}
{% set forecastText %}{% trans "Forecast" %}{% endset %}
{% set options = [
{ id: "current", value: currentText },
{ id: "forecast", value: forecastText }
] %}
{{ forms.dropdown("weatherType", "single", title, module.getOption("weatherType", "current"), options, "id", "value", helpText) }}
{% set title %}{% trans "Use the Display Location" %}{% endset %}
{% set helpText %}{% trans "Use the location configured on the display" %}{% endset %}
{{ forms.checkbox("useDisplayLocation", title, module.getOption("useDisplayLocation", 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 "Days Offset" %}{% endset %}
{% set helpText %}{% trans "Starting day offset" %}{% endset %}
{{ forms.number("dayOffset", title, module.getOption("dayOffset", 0), helpText, "forecastViewControls", "") }}
{% set title %}{% trans "Number of days" %}{% endset %}
{% set helpText %}{% trans "Number of days ( less than one week ) to display counting from the offset value onwards" %}{% endset %}
{{ forms.number("numDays", title, module.getOption("numDays", 1), helpText, "forecastViewControls", "required") }}
{% set title %}{% trans "Days Columns" %}{% endset %}
{% set helpText %}{% trans "Number of columns to display" %}{% endset %}
{{ forms.number("daysCols", title, module.getOption("daysCols", 1), helpText, "forecastViewControls", "required") }}
{% set title %}{% trans "Days Rows" %}{% endset %}
{% set helpText %}{% trans "Number of rows to display" %}{% endset %}
{{ forms.number("daysRows", title, module.getOption("daysRows", 1), helpText, "forecastViewControls", "required") }}
{% 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, module.getOption("lang", "en"), module.supportedLanguages(), "id", "value", helpText) }}
{% 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, module.getOption("dayConditionsOnly"), helpText) }}
{% set title %}{% trans "Show main background?" %}{% endset %}
{% set nameDefault %}{% trans "Default" %}{% endset %}
{% set helpText %}{% trans "Show background in the main widget container" %}{% endset %}
{{ forms.checkbox("showMainBackground", title, module.getOption("showMainBackground", 0), helpText) }}
{% set attributes = [
{ name: "data-allow-clear", value: "true" },
{ name: "data-placeholder--id", value: null },
{ name: "data-placeholder--value", value: "" },
{ name: "data-search-url", value: url_for("library.search") },
{ name: "data-search-term", value: "media" },
{ name: "data-search-term-tags", value: "tags" },
{ name: "data-width", value: "100%" },
{ name: "data-id-property", value: "mediaId" },
{ name: "data-text-property", value: "name" },
{ name: "data-filter-options", value: '{"type":"image"}' }
] %}
{% set backgroundTranslations = {
"cloudy-image": "Cloudy"|trans,
"day-cloudy-image": "Cloudy day"|trans,
"day-sunny-image": "Clear"|trans,
"fog-image": "Fog"|trans,
"hail-image": "Hail"|trans,
"night-clear-image": "Clear night"|trans,
"night-partly-cloudy-image": "Cloudy night"|trans,
"rain-image": "Raining"|trans,
"snow-image": "Snowing"|trans,
"windy-image": "Windy"|trans
} %}
{% set backgroundOptions = [{"mediaId": "", "name": ""}]|merge(module.getBackgroundOptions()) %}
{% set getBackgroundList = module.getBackgroundList() %}
{% set backgroundListMessage %}{% trans "Select images from the media library to replace the default weather backgrounds. The images will be used both for main background and daily backgrounds." %}{% endset %}
{{ forms.message(backgroundListMessage, "") }}
{% for backgroundEl in getBackgroundList %}
{% if module.getOption(backgroundEl) != backgroundEl %}
{% set elOption = module.getOption(backgroundEl) %}
{% else %}
{% set elOption = "" %}
{% endif %}
{% set title = attribute(backgroundTranslations, backgroundEl) %}
{{ forms.dropdown(backgroundEl, "single", title, elOption, backgroundOptions, "mediaId", "name", "", "pagedSelect", "", "", "", attributes) }}
{% endfor %}
{% 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 localSelect selectPickerWithImage weather-type-targets", null, null, null, [{ name: "data-minimum-results-for-search", value: "Infinity" }, { name: "data-minimum-results-for-search", value: "Infinity" },{ name: "data-width", value: "100%" }], optionGroups, "image", "type") }}
{% set title %}{% trans "Override the template?" %}{% endset %}
{% set helpText %}{% trans "Tick if you would like to override the template." %}{% endset %}
{{ forms.checkbox("overrideTemplate", title, module.getOption("overrideTemplate"), helpText) }}
{% set useTemplatesMessage %}
{% trans "With Override the Template selected enter your own text, html and css by using the Templates drop down menu in the tab header above." %}
{% endset %}
{{ forms.message(useTemplatesMessage, 'template-override-controls') }}
{% 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") }}
{% trans "Forecast Template" %}
{% set simpleTextEditorMessage %}
{% trans "Enter text or HTML in the box below." %}
{% endset %}
{{ forms.message(simpleTextEditorMessage, 'template-advanced-editor-hide') }}
{% set simpleTextEditorMessage2 %}
{% trans "Enter the text to display. The red rectangle reflects the size of the region you are editing." %}
{% trans "Shift+Enter will drop a single line. Enter alone starts a new paragraph." %}
{% endset %}
{{ forms.message(simpleTextEditorMessage2, 'template-advanced-editor-show') }}
{% set helpText %}{% trans "Enter the template for the current forecast. For a list of substitutions click Get Forecast below." %}{% endset %}
{{ forms.textarea("template", "", module.getOption("template"), helpText, "template-override-controls", "required", 10) }}
{% trans "CSS Style Sheet" %}
{% set helpText %}{% trans "Enter a CSS style sheet to style the weather widget" %}{% endset %}
{{ forms.textarea("styleSheet", "", module.getOption("styleSheet"), helpText, "template-override-controls", "", 10) }}
{% trans "Optional JavaScript" %}
{{ forms.textarea("javaScript", "", module.getRawNode("javaScript"), "", "", "", 10) }}
{% 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 message %}{% trans "Please press Get Forecast" %}{% endset %}
{{ forms.message(message) }}
{% if module.getSetting("apiKey") == "" and module.getSetting("owmApiKey") == "" %}
{% set message %}{% trans "The Weather Widget has not been configured yet, please ask your CMS Administrator to look at it for you." %}{% endset %}
{{ forms.message(message, "alert alert-danger") }}
{% endif %}