Initial Upload
This commit is contained in:
131
views/library-form-edit.twig
Normal file
131
views/library-form-edit.twig
Normal file
@@ -0,0 +1,131 @@
|
||||
{#
|
||||
/**
|
||||
* Copyright (C) 2020 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#}
|
||||
|
||||
{% extends "form-base.twig" %}
|
||||
{% import "forms.twig" as forms %}
|
||||
|
||||
{% block formTitle %}
|
||||
{% trans "Edit Media" %}
|
||||
{% endblock %}
|
||||
|
||||
{% block formButtons %}
|
||||
{% trans "Cancel" %}, XiboDialogClose()
|
||||
{% trans "Save" %}, $("#mediaEditForm").submit()
|
||||
{% endblock %}
|
||||
|
||||
{% block callBack %}mediaEditFormOpen{% endblock %}
|
||||
|
||||
{% block formHtml %}
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<form id="mediaEditForm" class="XiboForm form-horizontal" method="put" action="{{ url_for("library.edit", {"id": media.mediaId}) }}" data-media-id="{{ media.mediaId }}" data-valid-extensions="{{ validExtensions }}" data-gettag="{{ url_for("tag.getByName") }}" data-folder-id="{{ media.folderId }}">
|
||||
{% if media.mediaType != "font" %}
|
||||
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-2 control-label">{% trans "Current Folder" %}</label>
|
||||
<div class="col-sm-10" style="padding-top: 7px">
|
||||
<span id="originalFormFolder"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group row">
|
||||
<label class="col-sm-2 control-label">{% trans "Move to Selected Folder:" %}</label>
|
||||
<div class="col-sm-10">
|
||||
<button type="button" class="btn btn-info" id="select-folder-button" data-toggle="modal" data-target="#folder-tree-form-modal">{% trans "Select Folder" %}</button>
|
||||
<span id="selectedFormFolder"></span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% set title %}{% trans "Name" %}{% endset %}
|
||||
{% set helpText %}{% trans "The Name of this item - Leave blank to use the file name" %}{% endset %}
|
||||
{{ forms.input("name", title, media.name, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Duration" %}{% endset %}
|
||||
{% set helpText %}{% trans "The duration in seconds this item should be displayed" %}{% endset %}
|
||||
{{ forms.number("duration", title, media.duration, helpText) }}
|
||||
|
||||
{% if currentUser.featureEnabled("tag.tagging") %}
|
||||
{% set title %}{% trans "Tags" %}{% endset %}
|
||||
{% set helpText %}{% trans "Tags for this Media - 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, media.getTagString(), helpText, 'tags-with-value') }}
|
||||
|
||||
<p id="loadingValues" style="margin-left: 17%"></p>
|
||||
|
||||
{% set title %}{% trans "Tag value" %}{% endset %}
|
||||
{{ forms.dropdown("tagValue", "single", title, "", options, "key", "value") }}
|
||||
|
||||
<div id="tagValueContainer">
|
||||
{% 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) }}
|
||||
</div>
|
||||
|
||||
<div id="tagValueRequired" class="alert alert-info">
|
||||
<p>{% trans "This tag requires a set value, please select one from the Tag value dropdown or provide Tag value in the dedicated field." %}</p>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% set title %}{% trans "Expiry date" %}{% endset %}
|
||||
{% set helpText %}{% trans "Select the date and time after which this media should be removed from the CMS - it will be removed from any existing widgets as well" %}{% endset %}
|
||||
{{ forms.dateTime("expires", title, expiryDate, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Retire this media?" %}{% endset %}
|
||||
{% set helpText %}{% trans "Retired media remains on existing Layouts but is not available to assign to new Layouts." %}{% endset %}
|
||||
{{ forms.checkbox("retired", title, media.retired, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Enable Media Stats Collection?" %}{% endset %}
|
||||
{% set helpText %}{% trans "Enable the collection of Proof of Play statistics for this Media Item. 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, media.enableStat, options, "id", "value", helpText) }}
|
||||
|
||||
{% set title %}{% trans "Orientation" %}{% endset %}
|
||||
{% set helpText %}{% trans "Set intended orientation for this Media, this is for filtering purpose only." %}{% endset %}
|
||||
{% set option1 = "Landscape"|trans %}
|
||||
{% set option2 = "Portrait"|trans %}
|
||||
{% set values = [{id: 'landscape', value: option1}, {id: 'portrait', value: option2}] %}
|
||||
{{ forms.dropdown("orientation", "single", title, media.orientation, values, "id", "value", helpText) }}
|
||||
|
||||
{% set title %}{% trans "Update this media in all layouts it is assigned to?" %}{% endset %}
|
||||
{% set helpText %}{% trans "Note: It will only be updated in layouts you have permission to edit." %}{% endset %}
|
||||
{% if settings.LIBRARY_MEDIA_UPDATEINALL_CHECKB == 1 %}
|
||||
{% set checked = 1 %}
|
||||
{% endif %}
|
||||
{{ forms.checkbox("updateInLayouts", title, checked, helpText) }}
|
||||
|
||||
{{ forms.hidden('folderId', media.folderId) }}
|
||||
{% else %}
|
||||
{% set message %}{% trans "Sorry, Fonts do not have any editable properties." %}{% endset %}
|
||||
{{ forms.message(message) }}
|
||||
{% endif %}
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user