{# /* * Spring Signage Ltd - http://www.springsignage.com * Copyright (C) 2015-2018 Spring Signage Ltd * (playlist-form-add.twig) */ #} {% extends "form-base.twig" %} {% import "forms.twig" as forms %} {% block formTitle %} {% trans "Add Playlist" %} {% endblock %} {% block formButtons %} {% trans "Cancel" %}, XiboDialogClose() {% trans "Save" %}, $("#playlistAddForm").submit() {% endblock %} {% block callBack %}playlistFormOpen{% endblock %} {% block formFieldActions %} [{ "field": "isDynamic", "trigger": "init", "value": false, "operation": "is:checked", "actions": { ".dynamic-message": { "display": "none" }, ".static-message": { "display": "block" } } },{ "field": "isDynamic", "trigger": "change", "value": false, "operation": "is:checked", "actions": { ".dynamic-message": { "display": "none" }, ".static-message": { "display": "block" } } },{ "field": "isDynamic", "trigger": "init", "value": true, "operation": "is:checked", "actions": { ".dynamic-message": { "display": "block" }, ".static-message": { "display": "none" } } },{ "field": "isDynamic", "trigger": "change", "value": true, "operation": "is:checked", "actions": { ".dynamic-message": { "display": "block" }, ".static-message": { "display": "none" } } }] {% endblock %} {% block formHtml %}
{% set title %}{% trans "Name" %}{% endset %} {% set helpText %}{% trans "The Name of the Playlist - (1 - 50 characters)" %}{% endset %} {{ forms.input("name", title, "", helpText) }} {% set title %}{% trans "Tags" %}{% endset %} {% set helpText %}{% trans "Tags for this Playlist - 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") }}

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

{% set title %}{% trans "Dynamic?" %}{% endset %} {% set helpText %}{% trans "Is the Playlist to have Library media assignments managed automatically by the CMS based on filter criteria? Set a filter on the next tab." %}{% endset %} {{ forms.checkbox("isDynamic", title, 0, helpText) }} {% set title %}{% trans "Enable Playlist Stats Collection?" %}{% endset %} {% set helpText %}{% trans "Enable the collection of Proof of Play statistics for this Playlist. Ensure that ‘Enable Stats Collection’ is set to ‘On’ in the Display Settings." %}{% endset %} {% set message %}{% trans "If you want to prepopulate your Playlist with Media using a search, then you can do so on the filter tab. Leave the Dynamic checkbox unticked to make it a one-time assignment." %}{% endset %} {{ forms.alert(message, "info") }} {% 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, theme.getSetting("PLAYLIST_STATS_ENABLED_DEFAULT"), options, "id", "value", helpText) }}
{% set message = "Populate with Library Media matching the criteria below and automatically maintain the Playlist."|trans %} {{ forms.message(message) }}
{% set message = "Populate with Library Media matching the criteria below. This is a one time assignment and is not automatically maintained."|trans %} {{ forms.message(message) }}
{% trans "Library Media" %}
{% set message = "Populate with Library Media matching the criteria below and automatically maintain the Playlist."|trans %} {{ forms.message(message) }} {% set title %}{% trans "Name filter" %}{% endset %} {{ forms.input("filterMediaName", title) }} {% set title %}{% trans "Tag filter" %}{% endset %} {{ forms.inputWithTags("filterMediaTag", title) }}
{% trans "ID" %} {% trans "Name" %} {% trans "Type" %} {% trans "Tags" %} {% trans "Duration" %}
{% endblock %}