moved create account link on login page to a hook
authorRodney Ewing <ewing.rj@gmail.com>
Tue, 9 Jul 2013 18:01:00 +0000 (11:01 -0700)
committerRodney Ewing <ewing.rj@gmail.com>
Fri, 16 Aug 2013 17:28:49 +0000 (10:28 -0700)
mediagoblin/plugins/basic_auth/__init__.py
mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html [new file with mode: 0644]
mediagoblin/templates/mediagoblin/auth/login.html

index 06059a07eb5acda11b93bc6d446d2f8002944f44..64564c7ffeaf8fb3003c65ab157c021e5b11fd72 100644 (file)
@@ -48,7 +48,9 @@ def setup_plugin():
     pluginapi.register_template_hooks(
         {'edit_link': 'mediagoblin/plugins/basic_auth/edit_link.html',
          'fp_link': 'mediagoblin/plugins/basic_auth/fp_link.html',
-         'fp_head': 'mediagoblin/plugins/basic_auth/fp_head.html'})
+         'fp_head': 'mediagoblin/plugins/basic_auth/fp_head.html',
+         'create_account':
+            'mediagoblin/plugins/basic_auth/create_account_link.html'})
 
 
 def get_user(**kwargs):
diff --git a/mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html b/mediagoblin/plugins/basic_auth/templates/mediagoblin/plugins/basic_auth/create_account_link.html
new file mode 100644 (file)
index 0000000..7425630
--- /dev/null
@@ -0,0 +1,27 @@
+{#
+# GNU MediaGoblin -- federated, autonomous media hosting
+# Copyright (C) 2011, 2012 MediaGoblin contributors.  See AUTHORS.
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+#}
+
+{% block create_account %}
+  {% if allow_registration %}
+    <p>
+      {% trans %}Don't have an account yet?{% endtrans %} 
+      <a href="{{ request.urlgen('mediagoblin.auth.register') }}">
+        {%- trans %}Create one here!{% endtrans %}</a>
+    </p>
+  {% endif %}
+{% endblock %}
index c394245e2bda7c96ba07ca411d24d56a19edc394..93cd82d925ce21f9110f721a6c68ce73318d1ba7 100644 (file)
           {% trans %}Logging in failed!{% endtrans %}
         </div>
       {% endif %}
-      {% if allow_registration %}
-        <p>
-        {% trans %}Don't have an account yet?{% endtrans %} 
-        <a href="{{ request.urlgen('mediagoblin.auth.register') }}">
-            {%- trans %}Create one here!{% endtrans %}</a>
-        </p>
-      {% endif %}
+      {% template_hook("create_account") %}
       {% template_hook("login_link") %} 
       {{ wtforms_util.render_divs(login_form, True) }}
       {% template_hook("fp_link") %}