diff --git a/response.go b/response.go index 46f31ee..d6202c7 100644 --- a/response.go +++ b/response.go @@ -40,6 +40,16 @@ func (rs *Response) BufferFile(name string, filetype string, b bytes.Buffer) *Re 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. func (rs *Response) Any(body any) *Response { if rs.isTerminated == false { diff --git a/template/components/content_table.go b/template/components/content_table.go index 9e77908..eb0199e 100644 --- a/template/components/content_table.go +++ b/template/components/content_table.go @@ -9,9 +9,10 @@ type ContentTable struct { } type ContentTableTH struct { - ID string - ValueType string // -> default string, href, badge, list, checkbox - Value string + ID string + ValueType string // -> default string, href, badge, list, checkbox + Value string + ValueClass string } type ContentTableTD struct { diff --git a/template/components/content_table.html b/template/components/content_table.html index e5aaf50..656e7e0 100644 --- a/template/components/content_table.html +++ b/template/components/content_table.html @@ -16,7 +16,9 @@ {{ else if eq $x.ValueType "list"}} {{template "content_list" $item.Value}} {{ else if eq $x.ValueType "checkbox"}} - {{template "form_checkbox" $item.Value}} + {{template "form_checkbox" $item.Value}} + {{ else if eq $x.ValueType "image"}} + {{ else }} {{ $item.Value }} {{end}}