From 3d67c9606e004300569dcdae1b3644a2cab0e6f4 Mon Sep 17 00:00:00 2001 From: Chris Dodge Date: Mon, 15 Oct 2012 13:52:41 -0400 Subject: [PATCH] fix bug where activation page was blank --- .../registration/activation_complete.html | 18 +++++++----------- 1 file changed, 7 insertions(+), 11 deletions(-) diff --git a/cms/templates/registration/activation_complete.html b/cms/templates/registration/activation_complete.html index 30e731e8cc..8cc3dc8c56 100644 --- a/cms/templates/registration/activation_complete.html +++ b/cms/templates/registration/activation_complete.html @@ -3,28 +3,24 @@ <%namespace name='static' file='../static_content.html'/> +<%block name="content">
- %if not already_active: -

Activation Complete!

- %else: -

Account already active!

- %endif -
- -

+ +

%if not already_active: - Thanks for activating your account. + Thanks for activating your account. %else: This account has already been activated. %endif - + %if user_logged_in: - Visit your dashboard to see your courses. + Visit your dashboard to see your courses. %else: You can now login. %endif

+