diff options
author | joak <joak@nospace.at> | 2020-08-17 11:55:24 +0200 |
---|---|---|
committer | joak <joak@nospace.at> | 2020-08-17 11:55:24 +0200 |
commit | f60e9ccd5b046101903a79bf6afa0cf87fdd956c (patch) | |
tree | db29d0f55a1bc3347b63341551fa05308554101d /models/exhibition.ini |
init
Diffstat (limited to 'models/exhibition.ini')
-rw-r--r-- | models/exhibition.ini | 56 |
1 files changed, 56 insertions, 0 deletions
diff --git a/models/exhibition.ini b/models/exhibition.ini new file mode 100644 index 0000000..96279ec --- /dev/null +++ b/models/exhibition.ini @@ -0,0 +1,56 @@ +[model] +name = Exhibition +label = {{ this.title }} +slug_format = "exhibitions/"+ {{ this._id }} + +[fields.title] +label = Title +type = string +width = 1/3 + +[fields.url] +label = url +type = string +width = 1/3 + +[fields.selected] +label = selected +type = boolean +width = 1/3 + +[fields.date_start] +label = Date Start +type = date +width = 1/2 + +[fields.date_end] +label = Date End +type = date +width = 1/2 + +[fields.venue] +label = Venue +type = string + +[fields.place] +label = Place +type = string + +[fields.country] +label = Country +type = string + +[fields.comment] +label = Comment +type = string + +[fields.thumbnail] +label = thumbnail +type = string + +[fields.info] +label = Body +type = flow +flow_blocks = gallery,content,video + + |