MovieNight/static/help.html

33 lines
599 B
HTML
Raw Permalink Normal View History

{{define "header"}}
{{end}}
{{define "body"}}
<div id="helpbody">
<h2>Commands</h2>
<dl>
{{range $k, $v := .Commands}}
2019-03-17 22:31:48 +01:00
<dt>{{$k}}</dt>
<dd>{{$v}}</dd>
{{end}}
</dl>
{{if .ModCommands}}
<h2>Moderator</h2>
<dl>
{{range $k, $v := .ModCommands}}
2019-03-17 22:31:48 +01:00
<dt>{{$k}}</dt>
<dd>{{$v}}</dd>
{{end}}
</dl>
{{end}}
{{if .AdminCommands}}
<h2>Administrator</h2>
<dl>
{{range $k, $v := .AdminCommands}}
2019-03-17 22:31:48 +01:00
<dt>{{$k}}</dt>
<dd>{{$v}}</dd>
{{end}}
</dl>
{{end}}
</div>
{{end}}