Anonymous
Interested, whats it about
It is a web app for managing information about pigeons
Lugano
hello there i have deployed my app on heroku, when i try to login i get this error (2003, "Can't connect to MySQL server on '127.0.0.1' (111)") am using mysql
Arturo
Arturo
change the url in DATABASES , in heroku, databases are host in a separate server
Lugano
explain a little bit
Arturo
where are you hosting you database?
Lugano
on localhost
Arturo
Heroku have addons for Mysql, try to add one to your project and use the url given for them
Lugano
is it free?
Lugano
because they are telling me to enter credit card info's
Lugano
to very my account
swagBit
hai, I created one HTML page and on that page four fields. two text boxes, one button and a label( output will print here). My question is this first I enter values in the text boxes and hit enter then the same two text boxes should display and I have to enter details on that text boxes, it will continue how much time I want this, how? and the previous text box's values do not change. can anyone help me with this?
Larry
Hey guys any one here who has used AD authentication with Django
Franck
Bjr svp quelqu un a déjà réussi à intégrer le payement Mtn mono dans une application django?
Adonis
Ib, here is English
Franck
Yep
Please how ?
Franck
Do you have an example of function who will help me ?
Larry
AD ?
Active directory
Mirco
Active directory
With Azure, yes
Larry
With Azure, yes
Any painters on how to go about it
Mirco
Any painters on how to go about it
with Azure I used the JWT token and by decoding it
Larry
Okay let do a bit of research on the same. thanks!!
Larry
*me
Larry
with Azure I used the JWT token and by decoding it
Found a module called django-auth-adfs
Mirco
check if is enough tested and supported
RobiN
Is there anyone who did project in django
RobiN
My project is online cake ordering site
RobiN
nobody
😂 I understand....
RobiN
Forget that
RobiN
I am damn stuck in my project
m0nte cr1st0
Hi. Help me, pls. I don't know( https://stackoverflow.com/questions/58977713/how-can-to-insert-one-html-code-from-one-field-into-another-and-to-render-it
m0nte cr1st0
Alex
Where do I write it?
In your template, but the field has to contain html or its pointless, i manage product-description like this (for styling reasons)
Siddhesh
Hii need help regarding django..i m noob working on backend..making apis with django with drf
Siddhesh
Im fillng user form while registeration. Thr are 2 models User and Profile.. Credentials info will get stored in User model.. Nd Extra user info will get stored in Profile model How to achieve this in single api hit
Siddhesh
I have already made one-to-one link user
Siddhesh
Relationship with profile
Siddhesh
Plz help
Vachagan Muradyan
Hi how i can make json model in views.py?
am π
Anyone solved error 301 in scrapy Middleware.redirect . How to bypass it .
Fahad
I need help, please
Fahad
https://stackoverflow.com/q/58903848/8111567
Михаил
Try to set language in settings
Jigani
Hi how i can make json model in views.py?
You don't really have to do that.... I'm not sure if there is a way but you can just create a normal model, pass the model instance into a dict and use json.loads and Jason.dumps to do the necessary
Vachagan Muradyan
Thanks
Manavver
Lesson 1: Building an E-Commerce Shopping Cart Using Django 2.0 and Python 3.6 - Muva Academy https://academy.muva.tech/blog/lesson-1-building-e-commerce-shopping-cart-using-django-2-0-python-3-6/
Ghorz
Anyone has a django projects and needs some extra hands...please holla
Hmmmm, need to integrate chatterbot to rest framework, pair with twilio for what's chatbot
professor
how can I have a better error handling in log in? I Want to have success, inactive, and error responses over JSON, but it always returns an error even if its inactive https://dpaste.de/7Sbf#L11
John
I have a one input field in my form, how can I save this data in my 2 fields in models/DB. . im using CBV. .
Vivek
Anyone who is studying in Canada?
Vivek
Please dm me
Kapil
Hello Can anyone give me a link where DJango , AJAX and datatables is integrated.
professor
how can I write my activate pattern like this ? https://dpaste.de/qdgR
Sultonbek Ikromov
no but instead you could customize your django form
Ильяс
Hi everybody. Could you please tell me how to make a sex choice field in DRF?
Ильяс
Should i create a new model for choices?
Anonymous
When i change coding in css it gives no result ...can anyone help how it will be correct
Ayomide
Should i create a new model for choices?
You could just make it a charfield....and have the choices attribute set
Ayomide
Check django docs
Kapil
Anonymous
Anyone with django geolocation tutorials
Opeyemi
Should i create a new model for choices?
SEX= ( ('M', 'Male'), ('F', 'Female'), ) BODYTYPE= ( ('Slim', 'Slim'), ('Average', 'Average'), ('Athletic', 'Athletic'), ('Heavyset', 'Heavyset'), ) class Profile(models.Model): sex = models.CharField(max_length=1, choices=SEX, blank=True, null=True) bodytype = models.CharField(max_length=8, choices=BODYTYPE, blank=True, null=True)