fradrive/templates/table/sortable-header.hamlet
Gregor Kleen 707beee3e3 Minor HTML tweaks
Fixes #324
2019-05-01 12:23:11 +02:00

12 lines
357 B
Plaintext

$newline never
$maybe flag <- sortableKey
$case directions
$of [SortAsc]
<a .table__th-link href=#{tblLink $ setParam (wIdent "sorting") (Just $ flag <> "-desc")}>
^{cellContents}
$of _
<a .table__th-link href=#{tblLink $ setParam (wIdent "sorting") (Just $ flag <> "-asc")}>
^{cellContents}
$nothing
^{cellContents}