{# /* * Spring Signage Ltd - http://www.springsignage.com * Copyright (C) 2015 Spring Signage Ltd * (${FILE_NAME}) */ #} {% extends "form-base.twig" %} {% import "forms.twig" as forms %} {% block formTitle %} {% trans "Add Layout" %} {% endblock %} {% block formButtons %} {% trans "Help" %}, XiboHelpRender("{{ help }}") {% trans "Cancel" %}, XiboDialogClose() {% trans "Save" %}, $("#layoutAddForm").submit() {% endblock %} {% block callBack %}layoutAddFormOpen{% endblock %} {% block formFieldActions %} [{ "field": "layoutId", "trigger": "change", "value": 0, "operation": "equals", "actions": { ".resolution-group": { "display": "block" } } },{ "field": "layoutId", "trigger": "change", "value": 0, "operation": "not", "actions": { ".resolution-group": { "display": "none" } } }] {% endblock %} {% block formHtml %}
{% set title %}{% trans "Name" %}{% endset %} {% set helpText %}{% trans "The Name of the Layout - (1 - 50 characters)" %}{% endset %} {{ forms.input("name", title, "", helpText) }} {% set title %}{% trans "Tags" %}{% endset %} {% set helpText %}{% trans "Tags for this Layout - Comma separated string of Tags or Tag|Value format. If you choose a Tag that has associated values, they will be shown for selection below." %}{% endset %} {{ forms.inputWithTags("tags", title, "", helpText, 'tags-with-value') }}

{% set title %}{% trans "Tag value" %}{% endset %} {{ forms.dropdown("tagValue", "single", title, "", options, "key", "value") }}
{% set title %}{% trans "Tag value" %}{% endset %} {% set helpText %}{% trans "Please provide the value for this Tag and confirm by pressing enter on your keyboard." %}{% endset %} {{ forms.input("tagValueInput", title, "", helpText) }}

{% trans "This tag requires a set value, please select one from the Tag value dropdown or provide Tag value in the dedicated field." %}

{% set title %}{% trans "Template" %}{% endset %} {% set helpText %}{% trans "Optionally choose a template you have saved before." %}{% endset %} {% set layouts = [{layoutId: null, layout: ""}]|merge(layouts) %} {{ forms.dropdown("layoutId", "single", title, "", layouts, "layoutId", "layout", helpText) }} {% set title %}{% trans "Resolution" %}{% endset %} {% set helpText %}{% trans "Choose the resolution this Layout should be designed for." %}{% endset %} {{ forms.dropdown("resolutionId", "single", title, "", resolutions, "resolutionId", "resolution", helpText, "resolution-group") }} {% set title %}{% trans "Enable Stats Collection?" %}{% endset %} {% set helpText %}{% trans "Enable the collection of Proof of Play statistics for this Layout. Ensure that ‘Enable Stats Collection’ is set to ‘On’ in the Display Settings." %}{% endset %} {{ forms.checkbox("enableStat", title, theme.getSetting("LAYOUT_STATS_ENABLED_DEFAULT"), helpText) }} {% set title %}{% trans "Automatically apply Transitions?" %}{% endset %} {% set helpText %}{% trans "When enabled, the default Transition type and duration will be applied to all widgets on this Layout." %}{% endset %} {{ forms.checkbox("autoApplyTransitions", title, theme.getSetting("DEFAULT_TRANSITION_AUTO_APPLY"), helpText) }}
{% set title %}{% trans "Description" %}{% endset %} {% set helpText %}{% trans "An optional description of the Layout. (1 - 250 characters)" %}{% endset %} {{ forms.textarea("description", title, "", helpText) }}
{% endblock %}