{# /** * Copyright (C) 2021 Xibo Signage Ltd * * Xibo - Digital Signage - http://www.xibo.org.uk * * This file is part of Xibo. * * Xibo is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License as published by * the Free Software Foundation, either version 3 of the License, or * any later version. * * Xibo is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License * along with Xibo. If not, see . */ #} {% extends "form-base.twig" %} {% import "forms.twig" as forms %} {% block formTitle %} {% trans "Add Template" %} {% endblock %} {% block formButtons %} {% trans "Cancel" %}, XiboDialogClose() {% trans "Save" %}, $("#templateAddForm").submit() {% endblock %} {% block callBack %}templateFormOpen{% endblock %} {% block formHtml %}
{% if currentUser.featureEnabled('folder.view') %}
{{ forms.hidden('folderId') }} {% endif %} {% set title %}{% trans "Name" %}{% endset %} {% set helpText %}{% trans "The Name of the Template - (1 - 50 characters)" %}{% endset %} {{ forms.input("name", title, "", helpText) }} {% if currentUser.featureEnabled("tag.tagging") %} {% set title %}{% trans "Tags" %}{% endset %} {% set helpText %}{% trans "Tags for this Template - 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." %}

{% endif %} {% set title %}{% trans "Resolution" %}{% endset %} {% set helpText %}{% trans "Choose the resolution this Template should be designed for." %}{% endset %} {{ forms.dropdown("resolutionId", "single", title, "", resolutions, "resolutionId", "resolution", helpText, "resolution-group") }} {{ forms.message("You can also add a template from an existing Layout from the Layout Editor."|trans, "alert alert-info") }}
{% set title %}{% trans "Description" %}{% endset %} {% set helpText %}{% trans "An optional description of the Template. (1 - 250 characters)" %}{% endset %} {{ forms.textarea("description", title, "", helpText) }}
{% endblock %}