all repos — nirvash @ main

modular CMS using the quartzgun library

templates/config_set.html (raw)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{{ $config := (.Context).Value "config" }}
{{ $cfgError := ((.Context).Value "adapter").SetConfig $config }}

{{ template "header" . }}

{{ if $cfgError }}

  <h2>Configuration Error</h2>
  <span class="adapter-error">{{($cfgError).Error}}</span>

{{ else }}

  <h2>Configuration Saved</h2>
  <span class="adapter-success">The adapter configuration has been saved</span>

{{ end }}

{{ template "footer" . }}