Vaibhav
create a view function use api to get live price return to your ajax request and use response in chart.js
Asadbek
I couldn't write password , help
Asadbek
In my command line , I couldn't sent photo
Виктор
hello, how to fix error - 404 not found on css of drf-yasg package, url http://localhost/static/drf-yasg/swagger-ui-dist/swagger-ui-bundle.js.map not founded, but without .map file have
Karthik
ModuleNotFoundError: No module named 'inventory.urls'
Karthik
I am getting this error while doing makemigrations command
Karthik
Pls anyone help to slove
Anonymous
Can someone please help !! How do timeout a user login time
Anonymous
Let's say after 3hours of inactivity the user has to login again
Ghorz
I have a program that is expected to use the system clock, run for 3month to get results, how do I simulate 3months in 30 mins.
Karthik
ModuleNotFoundError: No module named 'inventory.urls'
Karthik
Hello guys pls help
Tkusi
Hey there..how can i get the result displayed on the same page after filling crispy form in django
Tkusi
Help
VarunTheLord
ModuleNotFoundError: No module named 'inventory.urls'
I think the module is not installed. Reinstall it..
goku
Is it compulsory to make a serializers for every class in models in drf?
goku
do reply fast it's urgent
Chyngyz
Hey there. I have a multiple user types (admin, finance etc). and model Transaction. How can I restrict finance user to edit only specific fields of Transaction model but admin can edit all? (Django Rest Framework)
Mirco
Everything is explained
sim
I got this error when I open my PostgreSQL
Jack
Let's say after 3hours of inactivity the user has to login again
Add the following to settings.py SESSION_COOKIE_AGE = 60*180
sim
Console code page (437) differs from Windows code page (1252) 8-bit characters might not work correctly. See psql reference page "Notes for Windows users" for details. Type "help" for help.
McLean
I create a small blog and i um having an error saying ?:(urls.w005) URL namespace 'gallery' isnt unique .You may not be able to reverse all URLs in this namespace What could be the problem
McLean
Could you please share URLs.py
from django.urls import path, re_path from django.conf.urls import url from .import views as v app_name = 'gallery' urlpatterns = [ path('',v.index), path('shots/',v.shots), path('about/',v.about), path('contact/',v.contact) ]
cj
Any framework for doing that..quickly
don't use Python to make "offline desktop apps", change your programming language... yes there are frameworks/libraries for that... but using them are not a good idea, use another programming language, and this is offtopic
McLean
Thanks could you please also provide project URLs.py
from django.contrib import admin from django.conf.urls import url from django.urls import path ,include from django.conf import settings from django.conf.urls.static import static urlpatterns = [ path('admin/', admin.site.urls), path('',include('gallery.urls')), path('shots/',include('gallery.urls')), path('about/',include('gallery.urls')), path('contact/',include('gallery.urls')) ] urlpatterns += static(settings.MEDIA_URL,document_root = settings.MEDIA_ROOT)
David
hi i am noob in web develop and i want know what is better if stack django angular or django react, i talk about what stack companies seach more. Can someone help me?
عــمــر
Hello , i want to put submit button that have value, i want to get this value and check it with detailView , how can i do this?
Anonymous
Hello , i want to put submit button that have value, i want to get this value and check it with detailView , how can i do this?
Submit button doesn't contain any value, it only triggers, that inputted data in form should be posted to view
M
Also for reverse match it's better to give url name by name option
𝘿𝙖𝙫𝙞𝙙
Hello I make bots and on Telegram with Python I know Postgresql How much time does it take to start intermediate django projects
Anonymous
Hello I make bots and on Telegram with Python I know Postgresql How much time does it take to start intermediate django projects
If you know python really well, you know about classes and how to work with them, then it may take a 5 months. But you can learn faster, it depends on you
Anonymous
You need also to know basic Front-End
McLean
U just need to have include of gallery.urls one time
Thanks , can you share example code snippet
M
https://docs.djangoproject.com/en/3.1/ref/urls/
Ædel
oh oops any ckeditor alternative that supports RTL?
Doragonsureiyā
oh oops any ckeditor alternative that supports RTL?
Step 1: Open a browser Step 2: Write down https://google.com or https://duck.com and press Enter Step 3: In the search box, write down the same words you asked here Step 4: Read the first results
Ædel
there's only an issue on github, also an entry in ckeditor's github todo, which means it's not implemented yet.
Ædel
bad luck then 🤷🏻‍♂️
asking to make sure if i am!
jūdê
How do I solve a "NoReverseMatch" error?
Doragonsureiyā
How do I solve a "NoReverseMatch" error?
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
Manpreet
How do I solve a "NoReverseMatch" error?
do try naming the url particularly may solve your issue
Ankush
Hii there
Ankush
I want to work on an open source projects
Ankush
Is there any website that ?
Ankush
*for
Ankush
I know Django and i am currently learning Django rest api framework
Ankush
And some basics of front end
Ankush
Ok
garrip91
How can I add the telephone-mask into my Django-project?
Anonymous
How can I add the telephone-mask into my Django-project?
contact_number = forms.CharField(widget=forms.TextInput(attrs={'data-mask':"000-000-0000"}))
garrip91
use model or form
And how can I do it using JavaScript?
Anonymous
And how can I do it using JavaScript?
https://dobsondev.com/2017/04/14/using-jquery-mask-to-mask-form-input/
jūdê
ya sure
I'll DM you now
عــمــر
How can i get an object from model and edit manytomany field and add more data on it
garrip91
https://dobsondev.com/2017/04/14/using-jquery-mask-to-mask-form-input/
I'll try follow this manual and tell you it is good idea or not, bro 😉
George
I'll try follow this manual and tell you it is good idea or not, bro 😉
It would be better if you stopped using jquery in your webpages it's unnecesary in 2020
George
Jquery is better than other methods, isn't it?
nope, it's bloat, vanilla js is more than capable of doing much more than jquery does.
Nick
Hey help me please. I am create django website. My model.py is class Product(models.Model): product_id = models.AutoField product_name = models.CharField(max_length=100) And etc... I want to search product_name in 2 input and compare both and show there specifications how to do that anyone help me?