36 lines
743 B
Go
36 lines
743 B
Go
package html_components
|
|
|
|
type ItemDisplayType string
|
|
|
|
const (
|
|
ItemDisplayTypeText ItemDisplayType = "text"
|
|
ItemDisplayTypeTextarea ItemDisplayType = "textarea"
|
|
ItemDisplayTypeImage ItemDisplayType = "image"
|
|
ItemDisplayTypeDateTime ItemDisplayType = "datetime"
|
|
)
|
|
|
|
type ItemDisplayColumn struct {
|
|
Label string
|
|
Value string
|
|
Type ItemDisplayType
|
|
CropUrl string
|
|
Width int
|
|
TimestampParam string
|
|
}
|
|
|
|
type ItemDisplaySubItem struct {
|
|
Label string
|
|
Url string
|
|
}
|
|
|
|
type ItemDisplay struct {
|
|
BackUrl string
|
|
Columns []ItemDisplayColumn
|
|
SubItems []ItemDisplaySubItem
|
|
EditItemUrl string
|
|
DeleteItemUrl string
|
|
DeletePushUrl string
|
|
HasImages bool
|
|
ItemId int
|
|
}
|