# HG changeset patch # User Johannes Bornhold # Date 2016-05-24 13:51:52 # Node ID 6cca2305326a0c7a633f4ea510f41ac2ef84e4a8 # Parent fd48e82c7f9d572e426f44a11ca683b0c3a6296b templates: Remove social buttons template. diff --git a/rhodecode/templates/base/social_buttons.html b/rhodecode/templates/base/social_buttons.html deleted file mode 100644 --- a/rhodecode/templates/base/social_buttons.html +++ /dev/null @@ -1,13 +0,0 @@ -<%def name="render_social_buttons(social_plugins, context_page=None)"> - - %for plugin in social_plugins: - - %if context_page == 'login': - ${_('Sign in with')} ${plugin.get_display_name()} - %elif context_page == 'register': - ${_('Connect with')} ${plugin.get_display_name()} - %endif - - %endfor - -