Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
app-generator authored Apr 1, 2023
1 parent 594c91f commit 0dfdbb1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,22 +62,22 @@ $ pip install git+https://github.com/app-generator/django-admin-datta.git
> Add `LOGIN_REDIRECT_URL` and `EMAIL_BACKEND` of your Django project `settings.py` file:
```python
LOGIN_REDIRECT_URL = '/'
# EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
LOGIN_REDIRECT_URL = '/'
# EMAIL_BACKEND = 'django.core.mail.backends.smtp.EmailBackend'
EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend'
```

<br />

> Add `admin_datta` urls in your Django Project `urls.py` file
```python
from django.urls import path, include
from django.urls import path, include

urlpatterns = [
...
path('', include('admin_datta.urls')),
]
urlpatterns = [
...
path('', include('admin_datta.urls')),
]
```

<br />
Expand Down

0 comments on commit 0dfdbb1

Please sign in to comment.