blob: 83a542bd60811a742f8c111b506a86aa04a0ccd7 (
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
|
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
|