Request headers are shown as "None" or nothing (??) in the html output.
All Routes have at least one header.
Tried with latest version + the 'default' and the 'elegance' theme.
default theme:
{{ range $res.Headers }}
{{ .Name }}{{ .Value }}
{{ end }}
elegance theme:
Headers
{{ if eq (len $req.Headers) 0 }}
{{ range $req.Headers }}
- {{ .Name }}
- {{ .Value }}
{{ end }}
{{ else }}
None
{{ end }}
Request headers are shown as "None" or nothing (??) in the html output.
All Routes have at least one header.
Tried with latest version + the 'default' and the 'elegance' theme.
default theme:
{{ .Name }}{{ .Value }} {{ end }}{{ range $res.Headers }}
elegance theme:
Headers
{{ if eq (len $req.Headers) 0 }}{{ range $req.Headers }}- {{ .Name }}
- {{ .Value }}
{{ end }}
{{ else }}