How to Use Django Database Backend and Migrations (Django Tutorial) | Part 9

preview_player
Показать описание
Enjoyed my video? Leave a like!
Рекомендации по теме
Комментарии
Автор

I am binge watching the tutorial and just wanted to comment that it is great so far. Very informative especially the tiny detail explanation why things are being done

arnodeconing
Автор

I cannot get enough of your tutorials, each step of the way I know exactly why I'm doing what I'm doing, you don't do the "we'll explain that later" bit, which I like. Tutorials aren't too simple or too advanced.

irjayjay
Автор

Just wanted to jump in here and compliment you on your work. Your tutorials are immensely helpful, super-informative and just all around great. Thanks for taking the time to produce these!

williamkarlsson
Автор

You are really doing here a great job! I’m enjoying your series! Thank you

andreaskoszegi
Автор

Thank you so much man. I'm a full stack dev but never worked with python - and thanks to your tuts I'm well on my way already! Cheers.

themstarpodcast
Автор

Your Video tutorials are very appreciable . The way you describe your topics is very helpful for those who are beginners . You are going to be very successful in future. All the best.

govindgupta
Автор

Pycharm will save you lots of time on restarting server and saving files, it will do restarts and saves for you based on changes you make and changing tabs within the program, its great! It will also allow you to look at all of django's source code without going to the net, in a nice lil tab within the program - though sometimes its nice to have side by side on browser.

whoisntwhoisit
Автор

I'm enjoying the tuts, Max. I do feel like you need to get that guitar going at some point though!

brianblackie
Автор

redirect url works...but I get a blank space on /account/

my code:

urlpatterns = [
url(r'^$', views.home),
url(r'^login$',
]

im aware I have to do this now I have Django 2?

jshen
Автор

what change should we make in the code to get it working with django 3.2

matniazi
Автор

Great tutorial!! I learned a lot. I do have a question, can I create two super users?

naomim
Автор

Can you explain to me why the LOGIN_REDIRECT_URL works when you redirect to /account/ where the directory is actually accounts and you didn't even need to specify home.html(with 's')?

hongingthorng
Автор

hi, i am using a mac for my import. I am trying to use now sqlitebrowser but i cant find it in my apps from mac. can you pls advise another app for mac that i can use to manage my DB? thank you in advance!

yoco
Автор

my login is not working and also gives no errors when i push login button

NILANJ
Автор

Max, you're great with this tut! how can we change the default sqlite 3 to postgresql or mysql?

donpislik
Автор

Forbidden (403)
CSRF verification failed. Request aborted.HelpReason given for failure: CSRF token missing or incorrect.
In general, this can occur when there is a genuine Cross Site Request Forgery, or when Django's
CSRF mechanism has not been used correctly. For POST forms, you need to
ensure:Your browser is accepting cookies.The view function uses RequestContext
for the template, instead of Context.In the template, there is a {% csrf_token%} template tag inside each POST form that targets an internal URL.If you are not using CsrfViewMiddleware, then you must use
csrf_protect on any views that use the csrf_token
template tag, as well as those that accept the POST data.You're seeing the help section of this page because you have DEBUG =
True in your Django settings file. Change that to False,
and only the initial error message will be displayed. You can customize this page using the CSRF_FAILURE_VIEW setting.  Max Goodridge Any help Thanks!

khaledthameur
Автор

Can anyone explain me why we type '/account/' and not '/accounts/'?

born_electric
Автор

an error will occur when i log in. error is "your database is locked".now, how can i do solve this error.please help me.

jaysuthar
Автор

HI mate
Thanks for your lessons, good job.
I'm following you step by step on this project but on this lesson gives me an error doesn't go to the home page but:
Page not found (404)
Request Method: POST

Using the URLconf defined in tutor.urls, Django tried these URL patterns, in this order:

admin/
accounts/
accounts/ login/
The current path, accounts/login/index.html, didn't match any of these.

the only difference I'm working with path not with url.

tudorcozma
Автор

For some reason the login button does not forward me, I can log into admin. But I do not get forwarded to anything.

kenhung