2019-04-09 13:59:33 +02:00
|
|
|
{{ template "header.html" . }}
|
|
|
|
<div class="center">
|
|
|
|
<div class="info">
|
|
|
|
<p>
|
|
|
|
<form action="/savehonker" method="POST">
|
|
|
|
<span class="title">add new honker</span>
|
|
|
|
<input type="hidden" name="CSRF" value="{{ .HonkerCSRF }}">
|
|
|
|
<p><input tabindex=1 type="text" name="name" value="" autocomplete=off> - name
|
|
|
|
<p><input tabindex=1 type="text" name="url" value="" autocomplete=off> - url
|
|
|
|
<p><span><label for="peep">just peeping:</label>
|
|
|
|
<input tabindex=1 type="checkbox" id="peep" name="peep" value="peep"><span></span></span>
|
|
|
|
<p><input tabindex=1 type="submit" name="add honker" value="add honker">
|
|
|
|
</form>
|
|
|
|
</div>
|
2019-04-22 23:03:55 +02:00
|
|
|
{{ $honkercsrf := .HonkerCSRF }}
|
2019-04-09 13:59:33 +02:00
|
|
|
{{ range .Honkers }}
|
2019-04-24 16:56:39 +02:00
|
|
|
<div class="honk">
|
|
|
|
<div class="title">
|
|
|
|
<img alt="avatar" src="/a?a={{ .XID }}">
|
|
|
|
<p style="font-size: 1.8em">{{ .Name }}
|
|
|
|
</div>
|
|
|
|
<p>url: <a href="{{ .XID }}" rel=noreferrer>{{ .XID }}</a>
|
2019-04-09 13:59:33 +02:00
|
|
|
<p>flavor: {{ .Flavor }}
|
2019-04-22 23:03:55 +02:00
|
|
|
<p><a href="/h/{{ .Name }}">honks</a>
|
|
|
|
<p>combos:{{ range .Combos }} <a href="/c/{{ . }}">{{ . }}</a>{{ end }}
|
2019-04-24 16:56:39 +02:00
|
|
|
<form action="/savehonker" method="POST">
|
|
|
|
<input type="hidden" name="CSRF" value="{{ $honkercsrf }}">
|
|
|
|
<input type="hidden" name="honkerid" value="{{ .ID }}">
|
2019-04-22 23:03:55 +02:00
|
|
|
<p>combos: <input type="text" name="combos" value="{{ range .Combos }}{{ . }} {{end}}">
|
2019-04-26 21:31:42 +02:00
|
|
|
<p>depart: <input type="text" name="goodbye" value="" autocomplete=off> (say "goodbye")
|
2019-04-22 23:03:55 +02:00
|
|
|
<p><input type="submit" name="save" value="save">
|
|
|
|
</form>
|
2019-04-24 16:56:39 +02:00
|
|
|
</div>
|
2019-04-09 13:59:33 +02:00
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</div>
|