Content item admin summary display #14383
-
Can someone please remember me how you can specify for a content type that you want to display some additional informations in the Admin Summary. Example: You have an Excerpt HtmlField on a BlogPost and you want to make it appear in the admin content items list. Probably an Admin template with a specific ( |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 3 replies
-
@agriffard You can do that using placement like this {
"HtmlField": [
{
"displayType": "SummaryAdmin",
"differentiator": "YourContentPart-Data",
"place": "Content"
}
]
} Assuming you have this part public class YourContentPart : ContentPart
{
public HtmlField Data { get; set; }
} |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
@agriffard you don't need to have a custom theme. You just need to define placement either by adding
placement.json
file in your project or using the "Placements" feature which allow you to define custom placement using the UITo target
Subtitle
using the "Placements" feature. Use the UI to add a new shape calledTextField
with the following JSONor if you user
placement.json
, then add the following