{% extends "authed.twig" %} {% import "inline.twig" as inline %} {% block actionMenu %} {% endblock %} {% block pageContent %}
{% trans "Layouts" %}
{% set title %}{% trans "ID" %}{% endset %} {{ inline.number("layoutId", title) }}
{% set title %}{% trans "Tags" %}{% endset %} {% set exactTagTitle %}{% trans "Exact match?" %}{% endset %} {% set helpText %}{% trans "A comma separated list of tags to filter by. Enter a Tag value preceded with | to filter by Tag values. Enter --no-tag to see items without tags." %}{% endset %} {{ inline.inputWithTags("tags", title, null, helpText, null, null, null, "exactTags", exactTagTitle) }} {% set attributes = [ { name: "data-allow-clear", value: "true" }, { name: "data-placeholder--id", value: null }, { name: "data-placeholder--value", value: "" } ] %} {% set title %}{% trans "Owner" %}{% endset %} {% set helpText %}{% trans "Show items owned by the selected User." %}{% endset %} {{ inline.dropdown("userId", "single", title, "", [{userId:null, userName:""}]|merge(users), "userId", "userName", helpText, "selectPicker", "", "", "", attributes) }} {% set title %}{% trans "Owner User Group" %}{% endset %} {% set helpText %}{% trans "Show items owned by users in the selected User Group." %}{% endset %} {{ inline.dropdown("ownerUserGroupId", "single", title, "", [{groupId:null, group:""}]|merge(groups), "groupId", "group", helpText, "selectPicker", "", "", "", attributes) }} {% set title %}{% trans "Display Group" %}{% endset %} {% set helpText %}{% trans "Show Layouts active on the selected Display / Display Group" %}{% endset %} {{ inline.dropdown("activeDisplayGroupId", "single", title, "", [{displayGroupId:null, displayGroup:""}]|merge(displayGroups), "displayGroupId", "displayGroup", helpText, "selectPicker", "", "", "", attributes) }}
{% set title %}{% trans "Retired" %}{% endset %} {% set option1 = "Yes"|trans %} {% set option2 = "No"|trans %} {% set values = [{id: 1, value: option1}, {id: 0, value: option2}] %} {{ inline.dropdown("retired", "single", title, 0, values, "id", "value") }} {% set title %}{% trans "Show" %}{% endset %} {% set option1 = "All"|trans %} {% set option2 = "Only Used"|trans %} {% set option3 = "Only Unused"|trans %} {% set values = [{id: 1, value: option1}, {id: 2, value: option2}, {id: 3, value: option3}] %} {{ inline.dropdown("layoutStatusId", "single", title, 1, values, "id", "value") }} {% set title %}{% trans "Description" %}{% endset %} {% set option1 = "All"|trans %} {% set option2 = "1st line"|trans %} {% set option3 = "Widget List"|trans %} {% set values = [{id: 1, value: option1}, {id: 2, value: option2}, {id: 3, value: option3}] %} {{ inline.dropdown("showDescriptionId", "single", title, 2, values, "id", "value") }} {% set title %}{% trans "Media" %}{% endset %} {{ inline.input("mediaLike", title) }}
{% trans "ID" %} {% trans "Name" %} {% trans "Status" %} {% trans "Description" %} {% trans "Duration" %} {% trans "Tags" %} {% trans "Thumbnail" %} {% trans "Owner" %} {% trans "Permissions" %} {% trans "Valid?" %} {% trans "Stats?" %} {% trans "Created" %} {% trans "Modified" %} {% trans "Row Menu" %}
{% endblock %} {% block javaScript %} {% endblock %} {% block javaScriptTemplates %} {{ parent() }} {% raw %} {% endraw %} {% endblock %}