Compare commits

..

No commits in common. "0afafd8c4166197f953c02150e18970601e9c38d" and "23753fc72f4072ff8e48a0a68ab58f132d76c9ad" have entirely different histories.

4 changed files with 4 additions and 9 deletions

View file

@ -68,9 +68,8 @@ func (c *Context) RequestParamExists(key string) bool {
return c.Request.httpRequest.Form.Has(key)
}
func (c *Context) GetRequesForm(key string) interface{} {
c.Request.httpRequest.ParseForm()
return c.Request.httpRequest.Form[key]
func (c *Context) GetRequesForm() interface{} {
return c.Request.httpRequest.Form
}
func (c *Context) GetRequesBodyMap() map[string]interface{} {

View file

@ -10,7 +10,7 @@ type ContentTable struct {
type ContentTableTH struct {
ID string
ValueType string // -> default string, href, badge, list, checkbox
ValueType string // -> default string, href, badge
Value string
}

View file

@ -13,10 +13,6 @@
{{template "content_href" $item.Value}}
{{ else if eq $x.ValueType "badge"}}
{{template "content_badge" $item.Value}}
{{ else if eq $x.ValueType "list"}}
{{template "content_list" $item.Value}}
{{ else if eq $x.ValueType "checkbox"}}
{{template "form_checkbox" $item.Value}}
{{ else }}
{{ $item.Value }}
{{end}}

View file

@ -1,6 +1,6 @@
{{define "form_checkbox"}}
<div class="input-container">
{{ if .Label }}<label class="form-label">{{.Label}}</label>{{end}}
<label class="form-label">{{.Label}}</label>
{{range $options := .AllCheckbox}}
<div class="form-check">
<input class="form-check-input" type="checkbox" name="{{$options.Name}}" id="{{$options.ID}}" value="{{$options.Value}}"{{if eq $options.IsChecked true}} checked{{end}}>