blob: 73ce6d91c42a64c49d582ea476b367cd301672b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
name: "Lesana collection with certain errors"
lang: 'somethingish'
entry_label: '{{ short_id }}: {{ name }} - {{ things | join("; ") }}'
fields:
- name: name
type: string
index: free
- name: description
type: text
- name: position
type: string
index: field
- name: number
type: integer
help: "Enter an integer here"
- name: float
type: float
help: "Enter a floating point number here"
- name: price
type: decimal
help: 'prices are never float!'
- name: things
type: list
list: string
index: field
- name: cloud
type: cloud
help: 'There is no cloud type'
- name: category
type: string
values:
- first
- second
- third
- name: owners
type: list
list: string
values:
- me
- myself
|