20 lines
387 B
HTML
20 lines
387 B
HTML
{{template "layout.html" .}}
|
|
|
|
{{define "title"}}{{ title .Name }}{{end}}
|
|
|
|
{{define "content"}}
|
|
<h3>{{ title .Name }}</h3>
|
|
<p>{{ .Type }}</p>
|
|
|
|
{{- if ne .ForceId -1 -}}
|
|
<dl class="row">
|
|
<dt class="col-2 col-lg-1">Force</dt>
|
|
<dd class="col-10 col-lg-11">{{ hf .ForceId }}</dd>
|
|
</dl>
|
|
{{- end -}}
|
|
|
|
<h5>Events</h5>
|
|
{{ template "events.html" events . }}
|
|
|
|
<p>{{ json . }}</p>
|
|
{{- end }} |