From d22679f325a215a74454a92cc02cf81a1a71bfd6 Mon Sep 17 00:00:00 2001 From: Nicolas Schodet Date: Thu, 27 Sep 2018 22:05:54 +0200 Subject: [PATCH] Sort settings page by name --- qutebrowser/html/settings.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qutebrowser/html/settings.html b/qutebrowser/html/settings.html index d4ff4ce34..44824eeac 100644 --- a/qutebrowser/html/settings.html +++ b/qutebrowser/html/settings.html @@ -34,7 +34,7 @@ input { width: 98%; } Setting Value - {% for option in configdata.DATA.values() if not option.no_autoconfig %} + {% for option in configdata.DATA.values()|sort(attribute='name') if not option.no_autoconfig %} {{ option.name }} (Current: {{ confget(option.name) | string |truncate(100) }})