Initial Upload

This commit is contained in:
Matt Batchelder
2025-12-02 10:32:59 -05:00
commit 05ce0da296
2240 changed files with 467811 additions and 0 deletions

View File

@@ -0,0 +1,80 @@
{#
/**
* 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 Data" %}
{% endblock %}
{% block formButtons %}
{% trans "Delete" %}, XiboSwapDialog("{{ url_for("dataSet.data.delete.form", {id: dataSet.dataSetId, rowId: row.id}) }}")
{% trans "Cancel" %}, XiboDialogClose()
{% trans "Save" %}, $("#dataSetEditData").submit()
{% endblock %}
{% block formHtml %}
<div class="row">
<div class="col-md-12">
<form id="dataSetEditData" class="XiboForm form-horizontal" method="put" action="{{ url_for("dataSet.data.edit", {id: dataSet.dataSetId, rowId: row.id}) }}">
{% for col in dataSet.getColumn() %}
{% if col.dataSetColumnTypeId == 1 %}
{% set fieldId = "dataSetColumnId_#{col.dataSetColumnId}" %}
{% set heading = attribute(row, col.heading) %}
{% if col.isRequired == 1 %}
{% set validation = "required" %}
{% else %}
{% set validation = "" %}
{% endif %}
{# Field depending on what data type we have #}
{% if col.dataTypeId == 2 %}
{{ forms.number(fieldId, col.heading, heading, col.tooltip, "", validation) }}
{% elseif col.dataTypeId == 3 %}
{{ forms.dateTime(fieldId, col.heading, heading, col.tooltip, "", validation) }}
{% elseif col.dataTypeId == 5 %}
{% set attributes = [
{ name: "data-search-url", value: url_for("library.search") },
{ name: "data-search-term", value: "media" },
{ name: "data-search-term-tags", value: "tags" },
{ name: "data-id-property", value: "mediaId" },
{ name: "data-text-property", value: "name" },
{ name: "data-filter-options", value: '{"type":"image"}' },
{ name: "data-allow-clear", value: "true"},
{ name: "data-placeholder", value: "Select an Image"}
] %}
{% set images = attribute(row, "__images") %}
{% set images = attribute(images, col.dataSetColumnId) %}
{{ forms.dropdown(fieldId, "single", col.heading, heading, [images], "mediaId", "name", col.tooltip, "pagedSelect", validation, "", "", attributes) }}
{% elseif col.listContent != "" %}
{{ forms.dropdown(fieldId, "single", col.heading, heading, [""]|merge(col.listContentArray()), "", "", col.tooltip, "", validation) }}
{% else %}
{{ forms.input(fieldId, col.heading, heading, col.tooltip, "", validation) }}
{% endif %}
{% endif %}
{% endfor %}
</form>
</div>
</div>
{% endblock %}