about summary refs log tree commit diff stats
path: root/frontend/templates
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/templates')
-rw-r--r--frontend/templates/blocks/options.gotmpl13
1 files changed, 13 insertions, 0 deletions
diff --git a/frontend/templates/blocks/options.gotmpl b/frontend/templates/blocks/options.gotmpl
new file mode 100644
index 0000000..3451eb3
--- /dev/null
+++ b/frontend/templates/blocks/options.gotmpl
@@ -0,0 +1,13 @@
+{{ define "results" }}
+  {{ range $opt, $data := .Results }}
+  <details>
+    <summary>
+      {{ $opt }}
+    </summary>
+    <p>
+      {{ $data.Description }}
+    </p>
+  </details>
+  {{ end }}
+</div>
+{{ end }}