Adapted from https://stackoverflow.com/a/57080195. Additions: 1. sortTable accepts a secondary column and sorting direction. The 'Name' column (number 0) is always used for the secondary 2. use classes 'ascSorted' and 'descSorted' to toggle between ascending and descending order 3. in the table functions, use .innerHTML instead of .innnerText so the link to detailed protocol information does not get lost. Also preserve .classList
22 lines
569 B
Smarty
22 lines
569 B
Smarty
{{ $ServerName := urlquery .ServerName }}
|
|
|
|
<table class="table table-striped table-bordered table-sm sortable">
|
|
<thead>
|
|
{{ range .Header }}
|
|
<th scope="col">{{ html . }}</th>
|
|
{{ end }}
|
|
</thead>
|
|
<tbody>
|
|
{{ range .Rows }}
|
|
<tr class="table-{{ .MappedState }}">
|
|
<td><a href="/detail/{{ $ServerName }}/{{ urlquery .Name }}">{{ html .Name }}</a></td>
|
|
<td>{{ html .Proto }}</td>
|
|
<td>{{ html .Table }}</td>
|
|
<td>{{ html .State }}</td>
|
|
<td>{{ html .Since }}</td>
|
|
<td>{{ html .Info }}</td>
|
|
</tr>
|
|
{{ end }}
|
|
</tbody>
|
|
</table>
|