Re: 'accounts/logout' isn't working !!

2024-03-14 Thread Keshav Jha
New Version of django does not support GET method for logout. You have two options to accomplish your task: 1. Send a post request to logout. 2. Custom Manage: > Create a custom url in the project's url.py at the top. path('admin/logout/', logout_), > Create a v

error in Importing 'RemovedInDjango40Warning'

2019-08-30 Thread keshav
-- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d

Re: django

2018-07-14 Thread Rohit Keshav
Django doesn't behave like WordPress. There isn't a UI like WordPress. For more refer - https://www.djangoproject.com/start/ On Sat, Jul 14, 2018, 10:27 PM jiten amin wrote: > Does Django provides UI interface like Wordprees do? How we can develop > website in django using UI? > > -- > You recei

Re: Makemigration not working.. Please help me

2018-07-03 Thread Keshav Garg
Make sure that your app_name is there in setting.py under INSTALLED_APPS and register your model under admin.py Also there is indentation error in your model POST. Please correct it before running makemigrations command. I hope this will Work :-) On Tuesday, July 3, 2018 at 11:10:16 AM UTC+5:30,