2025-01-04 20:19:12 +00:00
|
|
|
{{ if ( .Scratch.Get "listMode" ) }}
|
2025-01-12 14:52:54 +00:00
|
|
|
<table>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
{{ if ( and ( in site.Params.mainSections .Section ) ( in "current log wishlist" ( .Scratch.Get "page" ) ) ) }}
|
|
|
|
{{ if eq .Type "tv" }}
|
|
|
|
{{ partial ( printf "%s/%s/%s" .Section .Parent.Slug "table-header" ) . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ partial ( printf "%s/%s" .Section "table-header" ) . }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2025-01-04 20:19:12 +00:00
|
|
|
{{ if ( and ( in site.Params.mainSections .Section ) ( in "current log wishlist" ( .Scratch.Get "page" ) ) ) }}
|
2025-01-12 14:52:54 +00:00
|
|
|
{{ if eq .Type "tv" }}
|
|
|
|
{{ partial ( printf "%s/%s/%s" .Section .Parent.Slug "table-body" ) . }}
|
|
|
|
{{ else }}
|
|
|
|
{{ partial ( printf "%s/%s" .Section "table-body" ) . }}
|
|
|
|
{{ end }}
|
2025-01-04 20:19:12 +00:00
|
|
|
{{ end }}
|
2025-01-12 14:52:54 +00:00
|
|
|
</tbody>
|
|
|
|
<table></table>
|
|
|
|
</table>
|
2025-01-04 20:19:12 +00:00
|
|
|
{{ end }}
|