gcg-website/static/admin/config/collections/cantorpreis.js
Denys Konovalov 65260f63c6
All checks were successful
website-main / prod-build (push) Successful in 27s
website-main / test-build (push) Successful in 6s
Static CMS v4 (#250)
Schließt #247

Reviewed-on: #250
2023-12-11 20:07:24 +01:00

67 lines
1.3 KiB
JavaScript

import { MarkdownProps, ImageProps } from "../props.js";
import { DescriptionText, DraftBoolean } from "./widgets.js";
const CantorpreisCollection = {
name: "cantorpreis",
label: "Cantorpreisträger",
description:
"Hier sind alle Cantorpreisträger aufgelistet. Dieser Bereich wird von der Schulchronik verwaltet.",
icon: "award",
folder: "content/cantorpreis",
filter: {
field: "type",
value: "cantorpreis",
},
sortable_fields: {
fields: ["title", "name"],
default: {
field: "title",
direction: "Descending",
},
},
summary: "{{title}} - {{name}}",
create: true,
editor: {
preview: true,
frame: true,
size: "half",
},
summary_fields: ["title", "name", "draft", "body"],
fields: [
{
name: "title",
label: "Jahr",
widget: "string",
required: true,
},
{
name: "name",
label: "Name",
widget: "string",
required: true,
},
DraftBoolean,
DescriptionText,
{
name: "image",
label: "Bild",
default: "/media/image.webp",
...ImageProps,
},
{
name: "type",
label: "Typ",
widget: "hidden",
default: "cantorpreis",
},
{
name: "body",
label: "Text",
required: false,
...MarkdownProps,
},
],
};
export default CantorpreisCollection;