gcg-website/static/admin/config/collections/cantorpreis.js

62 lines
1.3 KiB
JavaScript
Raw Normal View History

import { EditorProps, MarkdownProps, ImageProps } from "../props.js";
2023-05-11 06:44:30 +02:00
import { DescriptionText, DraftBoolean } from "./widgets.js";
const CantorpreisCollection = {
2023-05-29 16:22:34 +02:00
name: "cantorpreis",
label: "Cantorpreisträger",
description:
"Hier sind alle Cantorpreisträger aufgelistet. Dieser Bereich wird von der Schulchronik verwaltet.",
icon: "award",
2023-06-21 17:58:49 +02:00
folder: "content/cantorpreis",
2023-05-29 16:22:34 +02:00
filter: {
field: "type",
value: "cantorpreis",
},
sortable_fields: {
fields: ["title", "name"],
default: {
field: "title",
direction: "Descending",
2023-05-11 06:44:30 +02:00
},
2023-05-29 16:22:34 +02:00
},
summary: "{{title}} - {{name}}",
...EditorProps,
2023-05-29 16:22:34 +02:00
summary_fields: ["title", "name", "draft", "body"],
fields: [
{
name: "title",
label: "Jahr",
widget: "string",
required: true,
2023-05-11 06:44:30 +02:00
},
2023-05-29 16:22:34 +02:00
{
name: "name",
label: "Name",
widget: "string",
required: true,
2023-05-11 06:44:30 +02:00
},
2023-05-29 16:22:34 +02:00
DraftBoolean,
DescriptionText,
{
name: "image",
label: "Bild",
default: "/media/image.webp",
...ImageProps,
2023-05-29 16:22:34 +02:00
},
{
name: "type",
label: "Typ",
widget: "hidden",
default: "cantorpreis",
},
{
name: "body",
label: "Text",
required: false,
...MarkdownProps,
},
],
2023-05-11 06:44:30 +02:00
};
2023-05-29 16:22:34 +02:00
export default CantorpreisCollection;