Django Tutorial for Beginners - 30 - Model Forms

Django Tutorial for Beginners - 30 - Model Forms

thenewboston

8 лет назад

154,443 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

Robert
Robert - 25.12.2020 02:54

It would also be really helpful if all of this code he's writing were in a repository we could pull. I followed the GitHub link above and couldn't find anything pertaining to this video.

Ответить
Robert
Robert - 24.12.2020 23:47

I wish there were an easy way to see a list of all of these Django videos in order so it was easier to watch them all. Doing a search on YT brings back a mish-mash of links.

Ответить
M.Haroon Ali
M.Haroon Ali - 03.07.2020 01:00

i cant get your project on github plz give me link of the code in github

Ответить
Atharva Naik
Atharva Naik - 11.04.2020 15:28

There is a big flaw here, if I know bootstrap I can skip bootstrap parts, but if I don't then that is another tutorial series for me

Ответить
Ty Ha
Ty Ha - 09.09.2019 02:36

fuck. I understand nothing

Ответить
Ayush Agarwal
Ayush Agarwal - 12.08.2019 14:17

if anybody knows how to make that bootstrap fancy thing, please kindly share the code.

Ответить
varun reddy
varun reddy - 15.07.2019 15:42

I only have a small doubt, I understood up to submit button but what I can't understand is how is data saved directly in the DATA BASE even though we didn't write any functionality?

Ответить
Yuvaraj
Yuvaraj - 17.05.2019 05:47

" from django.urls import reverse" if you got a error in importing urlresolvers!

Ответить
Dev Chahal
Dev Chahal - 06.05.2019 12:22

can anyone tell when bucky refered to music:detail in reverse was he reffering to the detail html file or the name in urls where he has specified name='detail'

Ответить
Marek Kubiak
Marek Kubiak - 13.04.2019 15:18

I actually appreciate how it's all combined - Django, css, html and bootstrap - but that's because I don't know any of that! Great videos!

Ответить
DiDi 2
DiDi 2 - 18.12.2018 14:33

I'm so happy that many people don't know bootstrap like me. I thought I was the only one who doesn't know it. haha!

Ответить
Firas Koussa
Firas Koussa - 21.11.2018 20:06

If you're watching in 2018:
Note that:
- from django.core.urlresolvers import reverse
should now be ->
- from django.urls import reverse

Ответить
Muntadar Muhammad
Muntadar Muhammad - 17.11.2018 12:57

the hard part is coming
why is the point from get_absolute_url function can some one explain plz

Ответить
SAGAR KUMAR
SAGAR KUMAR - 31.10.2018 18:51

I am not getting the images in the index and details pages, except this everything is working as expected. So someone help me out please.

Ответить
David Gromer
David Gromer - 22.10.2018 17:02

Nice vid ,but I have a question. How could i create a Instance of "Song" with a further Attribute (let's say "song_publisher) and set this Attribute via ForeignKey equal to the user who is currently logged in.

Ответить
Muhammad Tariq
Muhammad Tariq - 01.09.2018 21:24

its great to follow your taturiols online

Ответить
Johnnyboycurtis
Johnnyboycurtis - 23.06.2018 00:42

"Alright MOFO's, welcome back", was that really the intro??

Ответить
eshanmehendal
eshanmehendal - 22.05.2018 12:33

to do the grid view like bucky did in this video do this -
<div class="row">
<div class="col-sm-6 col-md-4">
<div class="thumbnail">
<img src="..." alt="...">
<div class="caption">
<h3>Thumbnail label</h3>
<p>...</p>
<p><a href="#" class="btn btn-primary" role="button">Button</a> <a href="#" class="btn btn-default" role="button">Button</a></p>
</div>
</div>
</div>
</div>

Ответить
khan L
khan L - 02.05.2018 22:39

'music:views' is not a viewname, how can i fix it

Ответить
khan L
khan L - 02.05.2018 22:38

'music:views' is not a viewname, how can i fix it

Ответить
omar Faruk
omar Faruk - 29.04.2018 23:29

why from django.core.ultresolvers import reverse does don work, when i import it gives wrong

Ответить
roger smith
roger smith - 22.04.2018 04:07

Django tutorial 30 Model Forms
apps used in this tutorial

\music\urls .py
\music\views .py
\music\models .py

Ответить
Anirudh Upadhyayula
Anirudh Upadhyayula - 01.03.2018 05:20

Did anyone get a NoReverseMatch error?

Ответить
Ahmed Winchester
Ahmed Winchester - 28.02.2018 08:16

If you are working with Django 2.0. its now "from django.urls import reverse" instead of "django.core.urlresolvers import reverse".

Ответить
Logan Hicks
Logan Hicks - 12.02.2018 17:47

I imported the project "as-is" from github, unpacked, ran, failed. Went in, modified the first issue, failing again, this time with:WSGIRequest' object has no attribute 'user'

At this point, I cant continue the tutorials.

I dont know whats wrong with my previous code, I dont know whats wrong with your code, and I dont have the knowledge to fix it, because I cant follow along in the code, because my code doesnt match your code, and my code and your code doesnt work.

All in all, it was a beautiful Casey Jones.

Ответить
Arif Ali
Arif Ali - 12.01.2018 22:17

i got this

No module named 'django.core.urlresolvers'

{% pls help asap %}

Ответить
AUGUSTUS CAESER
AUGUSTUS CAESER - 08.01.2018 06:15

also please do a tutorial series on materialize css framework

Ответить
AUGUSTUS CAESER
AUGUSTUS CAESER - 08.01.2018 06:14

this series sucks please remake this series i get more confused from watching this than learning

Ответить
Pascal Lohscheidt
Pascal Lohscheidt - 03.01.2018 22:50

Thanks, Bucky :) a clean tut as always. :) For all people complaining about this Bootstrap thing. This is a tutorial about Back-End-Development. No Front-End-Design. There are thousands of videos for bootstrap.

Ответить
Mustafa Qazi🇮🇳
Mustafa Qazi🇮🇳 - 23.12.2017 13:52

If you are getting error in importing django.core.urlresolvers it's because you are using version 2.0. Do" from django.urls import reverse" instead.

Ответить
karan dave
karan dave - 20.12.2017 20:46

reverse can be imported from django.urls instead of django.core.urlresolvers for those finding reference errors. It worked for me.

Ответить
Das Vas
Das Vas - 20.12.2017 04:57

Django 2.0 removes the django.core.urlresolvers module, which was moved to django.urls in version 1.9.

Ответить
Tanet z
Tanet z - 08.12.2017 16:08

** DYI **

Django 2.0 removes the django.core.urlresolvers module, which was moved to django.urls in version 1.9. You should change any import to use django.urls instead.

Ответить
Mitch Johnson
Mitch Johnson - 30.11.2017 07:13

I wish people would quit whining about bootstrap. If you're building a website along with Bucky, it will still work just the same. It just won't have cool styling. Still, I do think that Bucky should have avoided it.

Ответить
Mitch Johnson
Mitch Johnson - 30.11.2017 07:11

Should there be a caret in that regular expression at the end?

Ответить
Ngô Hoàng
Ngô Hoàng - 03.10.2017 17:40

thank you

Ответить
Ishwar Anjana
Ishwar Anjana - 03.10.2017 07:56

can anyone tell me where (file) is our album(title,logo..) is store?

Ответить
Jonathan Warner
Jonathan Warner - 25.09.2017 14:23

Alright mofos, go and watch any of the thousands bootstraps tuts available and stop that Minimi.

Ответить
Micober Ss
Micober Ss - 15.08.2017 02:57

I didnt get why we need REVERSE function and what it does

Ответить
Wojciech Ormaniec
Wojciech Ormaniec - 31.07.2017 11:31

Well, done tut, I really do not understand this whole "omfg, offscreen!" kind of hate... If you do nto know bootstrap, you just will not use it freely after watching you make bootstrap part. Daever, Like always wonderful ez af tut to understand, ty!

Ответить
giancarlo espinoza
giancarlo espinoza - 30.07.2017 00:03

"alright mofos welcome back"

Ответить
Abhishek Nigam
Abhishek Nigam - 24.06.2017 16:23

Maybe you could've made a skippable video for styling the website using bootstrap

Ответить
Christian Lisangola
Christian Lisangola - 23.05.2017 15:34

when i try to import reverse in my models.py file with the following line:< from django.core.urlresolvers import reverse> i'm getting this error :<ImportError: No module named 'django.core.urlresolvers>

Ответить
Rutger Muller
Rutger Muller - 16.05.2017 00:32

Hahaahahahahhaahaha. ALlright mofos xDD

Ответить