From feeb45c8608602e32b1e22469435ee57f4def1a2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?David=20=E2=80=98Bombe=E2=80=99=20Roden?= Date: Thu, 15 Sep 2011 21:36:13 +0200 Subject: [PATCH] Sort identities on index page, too. --- src/main/resources/templates/index.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 6ed3fee..4a52249 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -9,7 +9,7 @@ has to fulfill the Web of Trust’s requirement for a valid property name.

To be able to add targets for one of your identities, you first have to create an identity using the Web of Trust, and you have to enable the identity here.

-<%foreach enabledIdentities identity> +<%foreach enabledIdentities identity|sort> <%first>

Enabled Identities

<%/first> @@ -21,7 +21,7 @@ and you have to enable the identity here.

<%/foreach> -<%foreach disabledIdentities identity> +<%foreach disabledIdentities identity|sort> <%first>

Disabled Identities

<%/first> -- 2.7.4