d821d392/views/crud/crud-display.gohtml
1970-01-01 00:00:00 +00:00

16 lines
412 B
Plaintext

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