Here are the key steps to integrate Facebook login into a Django website:
1. Register your website with Facebook Developers and create an app. This will give you an App ID and App Secret.
2. Install the Python social auth app: `pip install social-auth-app-django`
3. Add 'social_django' to INSTALLED_APPS in settings.py
4. Configure the Facebook backend:
```python
SOCIAL_AUTH_FACEBOOK_KEY = '<your app id>'
SOCIAL_AUTH_FACEBOOK_SECRET = '<your app secret>'
```
5. Add the Facebook login URL to your URLs:
```python
url(r'^social