Initial Upload
This commit is contained in:
114
views/menuboard-product-form-edit.twig
Normal file
114
views/menuboard-product-form-edit.twig
Normal file
@@ -0,0 +1,114 @@
|
||||
{#
|
||||
/**
|
||||
* 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 <http://www.gnu.org/licenses/>.
|
||||
*/
|
||||
#}
|
||||
|
||||
{% extends "form-base.twig" %}
|
||||
{% import "forms.twig" as forms %}
|
||||
{% import "inline.twig" as inline %}
|
||||
|
||||
{% block formTitle %}
|
||||
{% trans "Edit Product " %}
|
||||
{% endblock %}
|
||||
|
||||
{% block formButtons %}
|
||||
{% trans "Cancel" %}, XiboDialogClose()
|
||||
{% trans "Save" %}, $("#menuBoardProductEditForm").submit()
|
||||
{% endblock %}
|
||||
|
||||
{% block callBack %}menuBoardProductFormOpen{% endblock %}
|
||||
{% block extra %}{{ menuBoardProduct.getOptions()|json_encode|raw }}{% endblock %}
|
||||
|
||||
{% block formHtml %}
|
||||
<div class="row">
|
||||
<ul class="nav nav-tabs" role="tablist">
|
||||
<li class="nav-item"><a class="nav-link active" href="#generalTab" role="tab" data-toggle="tab"><span>{% trans "General" %}</span></a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#detailTab" role="tab" data-toggle="tab"><span>{% trans "Details" %}</span></a></li>
|
||||
<li class="nav-item"><a class="nav-link" href="#configurationTab" role="tab" data-toggle="tab"><span>{% trans "Product Options" %}</span></a></li>
|
||||
</ul>
|
||||
<div class="col-md-12">
|
||||
<form id="menuBoardProductEditForm" class="XiboForm form-horizontal" method="put" action="{{ url_for("menuBoard.product.edit", { id: menuBoardProduct.menuProductId }) }}">
|
||||
<div class="tab-content">
|
||||
<div class="tab-pane active" id="generalTab">
|
||||
{% set title %}{% trans "Name" %}{% endset %}
|
||||
{% set helpText %}{% trans "The Name for this Menu Board Product" %}{% endset %}
|
||||
{{ forms.input("name", title, menuBoardProduct.name, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Price" %}{% endset %}
|
||||
{% set helpText %}{% trans "The Price for this Menu Board Product" %}{% endset %}
|
||||
{{ forms.number("price", title, menuBoardProduct.price, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Display Order" %}{% endset %}
|
||||
{% set helpText %}{% trans "Set a display order for this item to appear" %}{% endset %}
|
||||
{{ forms.number('displayOrder', title, menuBoardProduct.displayOrder, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Availability" %}{% endset %}
|
||||
{% set helpText %}{% trans "Should this Product appear as available?" %}{% endset %}
|
||||
{{ forms.switch('availability', title, menuBoardProduct.availability, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Code" %}{% endset %}
|
||||
{% set helpText %}{% trans "The Code identifier for this Menu Board Product" %}{% endset %}
|
||||
{{ forms.input("code", title, menuBoardProduct.code, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Media" %}{% endset %}
|
||||
{% set helpText %}{% trans "Optionally select Image or Video to be associated with this Menu Board Product" %}{% endset %}
|
||||
{% 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: '{"onlyMenuBoardAllowed":1}' },
|
||||
{ name: "data-allow-clear", value: "true"},
|
||||
{ name: "data-placeholder", value: "Select an Image or Video"},
|
||||
{ name: "data-thumbnail", value: "thumbnail"}
|
||||
] %}
|
||||
{{ forms.dropdown("mediaId", "single", title, menuBoardProduct.mediaId, [media], "mediaId", "name", helpText, "pagedSelect", "", "d", "", attributes) }}
|
||||
</div>
|
||||
|
||||
<div class="tab-pane" id="detailTab">
|
||||
{% set title %}{% trans "Description" %}{% endset %}
|
||||
{% set helpText %}{% trans "The Description for this Menu Board Product" %}{% endset %}
|
||||
{{ forms.textarea("description", title, menuBoardProduct.description, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Allergy Information" %}{% endset %}
|
||||
{% set helpText %}{% trans "The Allergy Information for this Menu Board Product" %}{% endset %}
|
||||
{{ forms.textarea("allergyInfo", title, menuBoardProduct.allergyInfo, helpText) }}
|
||||
|
||||
{% set title %}{% trans "Calories" %}{% endset %}
|
||||
{% set helpText %}{% trans "How many calories are in this product?" %}{% endset %}
|
||||
{{ forms.number("calories", title, menuBoardProduct.calories, helpText) }}
|
||||
</div>
|
||||
|
||||
<div class="tab-pane" id="configurationTab">
|
||||
{% set message %} {% trans "If required please provide additional options and their prices for this Product." %}{% endset %}
|
||||
{{ forms.message(message, 'alert alert-info') }}
|
||||
<div id="productOptionsContainer">
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{{ include('menuboard-product-javascript.twig') }}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user