{{ define "crudDisplay"}} {{ if not (or .IsTable .IsDisplay .IsEdit) }}
Invalid state: No display mode selected
{{ end }} {{ if .IsTable}} {{ template "table" .Table }} {{ end }} {{ if .IsDisplay }} {{ template "itemDisplay" .ItemDisplay }} {{ end }} {{ if .IsEdit }} {{ template "editItem" .EditItem }} {{ end }} {{end}}