Files
labca/gui/templates/views/show.tmpl
2022-09-02 20:18:41 +02:00

53 lines
1.5 KiB
Cheetah

{{ define "body" }}
{{ with .Details }}
<h3>{{ .Title }}</h3>
<table class="table table-striped table-bordered {{ .TableClass }}" id="details_table">
<tbody>
{{ range .Rows }}
<tr>
<th>{{ .Name }}</th>
<td>{{ .Value }}</td>
</tr>
{{ end }}
</tbody>
</table>
{{ if .Extra }}{{ range $extra := .Extra }}
{{ $extra }}
{{ end }}{{ end }}
<br>
{{ range .Relateds }}
<h4>{{ .Title }}</h4>
<table class="table table-striped table-bordered table-hover datatable {{ .TableClass }}">
<thead>
<tr>
{{ range .Header }}
<th>{{ . }}</th>
{{ end }}
</tr>
</thead>
<tbody>
{{ range .Rows }}
<tr>
{{ range . }}
<td>{{ . }}</td>
{{ end }}
</tr>
{{ end }}
</tbody>
</table>
{{ end }}
{{end}}
{{end}}
{{ define "head" }}
<link rel="stylesheet" href="static/css/dataTables.responsive.css">
{{ end }}
{{ define "tail" }}
<script src="static/js/jquery.dataTables.min.js"></script>
<script src="static/js/dataTables.bootstrap.min.js"></script>
<script src="static/js/dataTables.responsive.js"></script>
{{ end }}