Ghorz
can we able to store logs based on the particular columns values changes in django
Yes, you can build a logger, use post_save signal to send the data over
Anonymous
guys i have made a program using Pyqt5 web view.. in my html page I'm using video tag scr is mp4 .. please help me video is not working or playing on my Pyqt5 webview
ford
Cookiecutter django template users what was your biggest challenge
Werner
It takes like 2 seconds later
Yuvraj
How do i reload the contents of a page without actually reloading the whole page?
Anonymous
am new to django...please i want to know how to link my home page to the about page
EscanOr
if settings.DEBUG and request.META.get('REMOTE_ADDR') in settings.INTERNAL_IPS: AttributeError: 'str' object has no attribute 'META' why this error is showing what does it mean what can i do
EscanOr
help!!
Yuvi
Php can be used in django Or not
Mirco
Php can be used in django Or not
Django is Python so do I need to answer u ?
Yuvi
No what I'm asking is can we use php scripts in django
Mirco
Yuvi
Okay
Yuvi
So we can't use php scripts or validations in django right?
Mirco
make a choice in your life: PHP or Python
Future
make a choice in your life: PHP or Python
and end up choosing Python, for good.
Anonymous
PHP
Mirco
PHP
wrong place to say it 😎
Leonardo
guys i'm trying to make a lookup field but i'm getting this error https://ibb.co/Ctg3jY9
Jeevachaithanyan
So we can't use php scripts or validations in django right?
should you drive Benz car to go from A to B when you are already driving a BMW from A to B ?
Jeevachaithanyan
So we can't use php scripts or validations in django right?
https://data-flair.training/blogs/django-forms-handling-and-validation/
Mirco
The number is 85 without the trailing slash
Leonardo
The number is 85 without the trailing slash
😱 thanks a lot hahahahhahaha
Anonymous
Can someone tell me how to clear this error. NoReverseMatch in django
Doragonsureiyā
Can someone tell me how to clear this error. NoReverseMatch in django
To share code or error tracebacks please use an online pasting service, here is a list of suggested sites: - https://del.dog - https://dpaste.org - https://linkode.org - https://hastebin.com - https://bin.kv2.dev
Mirco
Can someone tell me how to clear this error. NoReverseMatch in django
There's no need to send pics if you share code in the right way
Future
Anonymous
https://hastebin.com/irupiqican.apache Where is the error. If I need to mention more of the error. Then reply to this message... The error happens because of the line {% url 'index' %}. If I make it back to index.html then it works. Can someone tell why?
Anonymous
Put inside pastebin your urls.py
https://hastebin.com/ihepicixet.apache
Anonymous
Mirco
Meaning?
Official docs and learn Django basics
Mirco
Take a tutorial , the simplest one
Anonymous
Official docs and learn Django basics
I've done that already.
Mirco
In every tutorial you should see a name attribute into the path
Mirco
Yes. It's done for namespace
Nope I mean url name not the namespace
Anonymous
Nope I mean url name not the namespace
Yes. I've given name too. But it still gives me error. That was another app.
Mirco
path('', views.index, name='index')
Mirco
And it will work
Anonymous
And it will work
No. It didn't work for one of the app. Even after putting name in path method.
Mirco
You need to pass the app name if you have index in an another app into the template
Mirco
{% url 'your_app:index' %}
Mirco
https://docs.djangoproject.com/en/3.1/intro/tutorial03/#namespacing-url-names
Anonymous
Everything u need to know ☝️
Thankyou for the help. I'll refer to the docs first from now onwards and then post a doubt. If I still couldn't clear it.
Mirco
Everything you need is there
Anonymous
https://hastebin.com/ofovowigem.yaml I've changed my gmail settings too after googling out the solutions to this error. But still getting this error.
Ankit
Guys is there a way to redirect to another page if I use unique_together and field value already exist I was able to show non-field error but I want to redirect to another page when unique_together validation happen ? Sorry I am newbie
Anonymous
wrong credentials
No. I've checked it over ten times already. But still getting the same error.
Anonymous
something is wrong into your email settings
Already. Said above. I've changed the settings of my gmai according to stack over flow answers. But still getting this erro
Ankit
No. I've checked it over ten times already. But still getting the same error.
You changed settings in gmail you need to enable less secure login and also no two step verification and IMAP enabled ??
Jay
Can someone help me convert the following query to ORM? SELECT * FROM core_modules_user U INNER JOIN core_modules_agentconfiguraton A ON U.company_information_id = A.company_information_id WHERE U.company_information_id = 3
Root
Performing raw SQL queries | Django documentation | Django https://docs.djangoproject.com/en/3.1/topics/db/sql/