views:

246

answers:

1

We are using django and django-socialauth ,

and my view is facebook/login

what is the facebook login-button for django,

thanks

+1  A: 

If you are refering in how to show the fb-button you can see the login_page.html

   {% block html_declare %}
       <html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml"&gt;
   {% endblock %}
   <div id="facebook">
       <fb:login-button onlogin="facebook_onlogin();"></fb:login-button>
   </div>

I Hope this help, I recommend to you simple facebook connect with django-socialregistration witch have a quickly integration.

panchicore