diff --git a/logbook/templates/logbook/dashboard.html b/logbook/templates/logbook/dashboard.html
index 1cca47e..4a12068 100644
--- a/logbook/templates/logbook/dashboard.html
+++ b/logbook/templates/logbook/dashboard.html
@@ -18,7 +18,7 @@
max-width: 50rem;
}
- a i.fa-solid {
+ .ordering-marker {
padding-left: 0.25rem;
}
@@ -97,9 +97,18 @@
Totals
- Type / Registration |
- |
- |
+
+ Type / Registration
+ {% include 'logbook/ordering_marker.html' with criterion='default' icon='fa-arrow-down-a-z' %}
+ |
+
+
+ {% include 'logbook/ordering_marker.html' with criterion='-time' icon='fa-arrow-down-wide-short' %}
+ |
+
+
+ {% include 'logbook/ordering_marker.html' with criterion='-landings' icon='fa-arrow-down-wide-short' %}
+ |
diff --git a/logbook/templates/logbook/ordering_marker.html b/logbook/templates/logbook/ordering_marker.html
new file mode 100644
index 0000000..72bf65a
--- /dev/null
+++ b/logbook/templates/logbook/ordering_marker.html
@@ -0,0 +1,5 @@
+{% if criterion in request.GET.order_by|default:'default' %}
+
+{% else %}
+
+{% endif %}