55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
#
|
|
# Custom (dynamic) lists. This data is used as the initial,
|
|
# minimal data for dynamic list that ships with the system.
|
|
#
|
|
# Fields:
|
|
# id: Primary id (not recommended)
|
|
# name: Name of the list
|
|
# name_plural: Name in plural (optional)
|
|
# sort_mode: Sorting order (Alpha, -Alpha, SortCol)
|
|
# masks: Edit masks to indicate various statuses of the list
|
|
# (e.g if editable or deletable..etc)
|
|
# notes: Notes for the list
|
|
# items: List of items for the list
|
|
# id: Primary id
|
|
# value: Value (name) of the list item
|
|
# extra: Abbreviated version of the value
|
|
# status: If enabled (1 - enabled, 0 - disabled)
|
|
# sort: Sort order (optional)
|
|
# properties: Item-specific config based on Ticket Flags form fields
|
|
# (key): (value)
|
|
# properties: List properties form (see form.yaml for details)
|
|
#
|
|
---
|
|
# Ticket statuses
|
|
- type: ticket-status #notrans
|
|
name: Ticket-Status
|
|
name_plural: Ticket-Status
|
|
sort_mode: SortCol # notrans
|
|
masks: 13
|
|
notes: |
|
|
Ticket-Status
|
|
properties:
|
|
title: Ticket-Status-Eigenschaften
|
|
instructions: Eigenschaften, die für einen Ticket-Status festgelegt werden können.
|
|
flags: 0
|
|
fields:
|
|
- type: state # notrans
|
|
name: state # notrans
|
|
label: Status
|
|
sort: 1
|
|
flags: 0x770F1
|
|
configuration:
|
|
prompt: Status eines Tickets
|
|
- type: memo # notrans
|
|
name: description # notrans
|
|
label: Beschreibung
|
|
sort: 3
|
|
flags: 0x73021
|
|
configuration:
|
|
rows: 2
|
|
cols: 40
|
|
html: false
|
|
length: 100
|
|
configuration:
|
|
handler: TicketStatusList
|