From 2684f341f5111fb831fb80e2b3b7ea7401cefc1c Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Sun, 24 Jul 2011 15:06:16 -0500 Subject: [PATCH] User profile had the wrong {% else %} nesting. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Thanks for the patch Velmont / Odin Hørthe Omdal! --- user_profile-fix_wrong_nesting.patch | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 user_profile-fix_wrong_nesting.patch diff --git a/user_profile-fix_wrong_nesting.patch b/user_profile-fix_wrong_nesting.patch new file mode 100644 index 00000000..590f87ff --- /dev/null +++ b/user_profile-fix_wrong_nesting.patch @@ -0,0 +1,17 @@ +diff --git a/mediagoblin/templates/mediagoblin/user_pages/user.html b/mediagoblin/templates/mediagoblin/user_pages/user.html +index 9d99ac5..a2b85af 100644 +--- a/mediagoblin/templates/mediagoblin/user_pages/user.html ++++ b/mediagoblin/templates/mediagoblin/user_pages/user.html +@@ -42,9 +42,9 @@ + atom feed +- {% else %} +- {# This *should* not occur as the view makes sure we pass in a user. #} +-

Sorry, no such user found.

+ ++ {% else %} ++ {# This *should* not occur as the view makes sure we pass in a user. #} ++

Sorry, no such user found.

+ {% endif %} + {% endblock %}