Vishal
here is views.py https://pastebin.com/umH86FgZ
Vishal
urls.py https://pastebin.com/UjSkZr7n
Anonymous
Hi guys I am a beginner in Django I want to get user email and password through a form and insert it into a datable column How can I do this?
Udasi
here is views.py https://pastebin.com/umH86FgZ
in the votes method(views.py), you call reverse('polls:results') and what happens is the url "/polls/2/results" is retrieved, which in turn calls results method from views... and there is no such method in views.py
Udasi
Hi guys I am a beginner in Django I want to get user email and password through a form and insert it into a datable column How can I do this?
create an html form with method as "POST", then you have the data in the views.py method
Anonymous
Anonymous
try django docs tutorial
I saw that but I didn't understand
Vishal
thanks udasi to help me
Udasi
I know html forms But How can I get inputs data in views.py
In the view method, you can use the request parameter like request.POST["x"] Here the "x" comes from the name attributes of the html input request.POST is a dictionary where all keys are the names of the various input tags
Tarushii
Hi, does anyone here have a pdf of django2 by example?
Alejandro
Good morning .. does anyone know how to use django authentication with mongodb
Scrim
use djongo
Raffaele
What is the best cms to develop an ecommerce with django?
Eric
What is the best cms to develop an ecommerce with django?
The best choice for ecommerce with Django is probably Oscar: https://github.com/django-oscar/django-oscar
Eric
Django Oscar: Uses Python 3, Has great documentation, and is widely used
Xavier
Anonymous
https://youtu.be/jHinmlZ3fRY
Alejandro
use djongo but disclaimer: not as easy as it sounds
I was looking at that library but I found that it was not compatible with django 3.0
Fedor
Hey everyone! Can you help me? https://stackoverflow.com/questions/62389436/queryset-ordering-for-nested-objects
wanderer
Can i paste the link of my webapp here , for feedback and review?
Xavier
or u might get marked as ads
wanderer
Whose the admin?
Manuel
someone here can help me
Manuel
how can I post a photo here
Mirco
!rules
Doragonsureiyā
Read the rules before any activity: @PythonRules
Manuel
ok
Alex
https://en.wikipedia.org/wiki/Topological_sorting
Mirco
!meta
Doragonsureiyā
Please don't ask meta questions like: "Any user of $x here?" "Anyone used technology $y?" "Hello I need help on $z" Just ask about your problem directly! With a very high amount of people here the probability that someone will help is pretty high. Also please read: http://catb.org/~esr/faqs/smart-questions.html
Xavier
directly ask (resist to pm)
Mirco
Are u doing the tutorial ?
Mirco
Start from the official tutorial
Mirco
!djangotut
Doragonsureiyā
Looking for Django tutorials? you can follow these three recommended ones: * Official documentation and tutorial * Tutorial from MDN * Tutorial from django-girls
Mirco
and if you have doubt about Foreign Keys, study databases theory
Shoab
https://www.youtube.com/channel/UCOa4Z7X5w5nLbpR46Wd7fkQ
A
please, how can you search for the rotation attribute of an image? I just received this:
A
<PIL.JpegImagePlugin.JpegImageFile image mode=RGB size=958x1280 at 0x22B427856C8> exept ProcessingSoftware exept NewSubfileType exept SubfileType exept ImageWidth exept ImageLength exept BitsPerSample exept Compression exept PhotometricInterpretation exept Thresholding exept CellWidth exept CellLength exept FillOrder exept DocumentName exept ImageDescription exept Make exept Model exept StripOffsets
Subroto
Hi I am new to django
Subroto
From where should I start ?
Doragonsureiyā
From where should I start ?
Looking for Django tutorials? you can follow these three recommended ones: * Official documentation and tutorial * Tutorial from MDN * Tutorial from django-girls
Subroto
Thanks
The
success_url is not working in createView, but shows no error, could somebody help please?
Sunny
Hi Django People, assume that we are having a blog website having two types of users - 1 Admin & 2 User. Where user can add some images in his Dashboard. And Admin has the authority of edit/remove the changes done by the users. can anyone tell me that how we can create an administrator who can perform this functionality. Please HELP!
Subroto
Do I have learn html CSS JavaScript for Django?
Sunny
Do I have learn html CSS JavaScript for Django?
Basic information about all of these is recommended to have
Xavier
Do I have learn html CSS JavaScript for Django?
just intermediate info of frontend is required
Subroto
😳😳
Subroto
👍
Anonymous
Hi all I send my cv to a company then I got an interview using phone call after the interview the HR employ told me that they will contact me the next two days but they do not
Mindru
:D
Anonymous
Have i sent to them email ask them why
Xavier
please refrain from talking about non-django stuffs other people have much important questions
Anonymous
I am sorry I just fresh graduate I do not know what should I do
Xavier
I am sorry I just fresh graduate I do not know what should I do
continue this at @pythonofftopic they will help you
Kk
Can't we use forms and ModelForms in the same file..??