add img and class to table template, new responnse buffer inline
This commit is contained in:
parent
1a39c666a3
commit
db3c510f9a
3 changed files with 17 additions and 4 deletions
10
response.go
10
response.go
|
@ -40,6 +40,16 @@ func (rs *Response) BufferFile(name string, filetype string, b bytes.Buffer) *Re
|
||||||
return rs
|
return rs
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// writes the contents of a buffer to the HTTP response with specified file name and type if not terminated.
|
||||||
|
func (rs *Response) BufferInline(name string, filetype string, b bytes.Buffer) *Response {
|
||||||
|
|
||||||
|
if rs.isTerminated == false {
|
||||||
|
rs.HttpResponseWriter.Header().Add("Content-Type", filetype)
|
||||||
|
b.WriteTo(rs.HttpResponseWriter)
|
||||||
|
}
|
||||||
|
return rs
|
||||||
|
}
|
||||||
|
|
||||||
// sets the response's content type to HTML and assigns the provided body as the response body if not terminated.
|
// sets the response's content type to HTML and assigns the provided body as the response body if not terminated.
|
||||||
func (rs *Response) Any(body any) *Response {
|
func (rs *Response) Any(body any) *Response {
|
||||||
if rs.isTerminated == false {
|
if rs.isTerminated == false {
|
||||||
|
|
|
@ -9,9 +9,10 @@ type ContentTable struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type ContentTableTH struct {
|
type ContentTableTH struct {
|
||||||
ID string
|
ID string
|
||||||
ValueType string // -> default string, href, badge, list, checkbox
|
ValueType string // -> default string, href, badge, list, checkbox
|
||||||
Value string
|
Value string
|
||||||
|
ValueClass string
|
||||||
}
|
}
|
||||||
|
|
||||||
type ContentTableTD struct {
|
type ContentTableTD struct {
|
||||||
|
|
|
@ -16,7 +16,9 @@
|
||||||
{{ else if eq $x.ValueType "list"}}
|
{{ else if eq $x.ValueType "list"}}
|
||||||
{{template "content_list" $item.Value}}
|
{{template "content_list" $item.Value}}
|
||||||
{{ else if eq $x.ValueType "checkbox"}}
|
{{ else if eq $x.ValueType "checkbox"}}
|
||||||
{{template "form_checkbox" $item.Value}}
|
{{template "form_checkbox" $item.Value}}
|
||||||
|
{{ else if eq $x.ValueType "image"}}
|
||||||
|
<img src="{{ $item.Value }}"{{ if $item.ValueClass }} class="{{$item.ValueClass}}"{{end}}>
|
||||||
{{ else }}
|
{{ else }}
|
||||||
{{ $item.Value }}
|
{{ $item.Value }}
|
||||||
{{end}}
|
{{end}}
|
||||||
|
|
Loading…
Reference in a new issue