about summary refs log tree commit diff stats
path: root/frontend/templates/blocks/options.gotmpl
blob: 3451eb30b6641e99fe88c258a149b031eca3d40f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "results" }}
  {{ range $opt, $data := .Results }}
  <details>
    <summary>
      {{ $opt }}
    </summary>
    <p>
      {{ $data.Description }}
    </p>
  </details>
  {{ end }}
</div>
{{ end }}