Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 5 years ago.
Improve this question
there is console on under picture
The project is django demo from github, I don't know where modify database username and database password. This is sqlite3.
This is github link: https://github.com/MoreYoungGavin/my_blog
Try delete in your settings.py file the lines
TEMPLATE_CONTEXT_PROCESSORS = global_settings.TEMPLATE_CONTEXT_PROCESSORS + [
'django.core.context_processors.request',
]
BOOTSTRAP_ADMIN_SIDEBAR_MENU = True
(as they are only work for django 1.7 and I suppose you have a newer version of Django)
and restart the development server.
Related
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 days ago.
Improve this question
I want to multiple role in django. I also create default auther user. But i want add login in second database table.
I try to authenticate(username='john', password='secret') function but it is working only django default author. I want to use second database table then how can i authenticate the second user and login to the site. Please advice currently working django 4.1 version.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 8 years ago.
Improve this question
I'm really unfamiliar in this area. Is it possible to access the AWS API from Django? E.g. by using Boto? Can that be run on Django?
Yes.
There is even a django app for using boto. It is called django-boto.
It is the first result when you search for "django boto".
Sure. boto is just python library and you can use it from Django.
I used boto from other web frameworks (CherryPy, Flask), and it simply works. There is no reason it would not work with Django.
Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 8 years ago.
Improve this question
social-auth (facebook) in django project, but I have a problem. Now I can loging by Facebook but account (email) must exist in User table. But I cannot log in when User not exist in db. Next question is about some good python-social-auth tutorial or maybe some body can show me some code how to do it. Ps I read official doc but I still have a problem
The docs for python-social-auth have a section for Django: http://psa.matiasaguirre.net/docs/configuration/django.html.
By default, you will have separate Facebook users and separate Django users.
Note that your settings.py you should have something like this:
AUTHENTICATION_BACKENDS = (
'social_auth.backends.facebook.FacebookBackend',
'django.contrib.auth.backends.ModelBackend',
)
That means you have different backends creating different users. You would have to do some work to synchronize them.
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 9 years ago.
Improve this question
I am new in ember.js and django.
I have done with django API using rest-framwork authentication means at the back-end side my api is working fine with authentication.
Now I have to authenticate from front end side using ember. Please tell me how to do ?
Closed. This question is opinion-based. It is not currently accepting answers.
Want to improve this question? Update the question so it can be answered with facts and citations by editing this post.
Closed 2 years ago.
Improve this question
I am creating an application that lets users login using Google, Facebook and the website's native login. The site is being built in Python / Django.
What would be the best way to handle login, session management and user authentication?
I do not want to use the in-built Django user management. I am using Django very sparingly(URLs, templates)