python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
one django project two apps, problem with generic views( class view)
i have two apps in one project: store and basket.
In urls.py in core of project:
urlpatterns = [
path('admin/', admin.site.urls),
path('', include('jewelry_store.urls', namespace='jewelry_stor...
hebel.dev
Votes: 0
Answers: 2
How to send all django error as json data
I am building a rest api in django, I am using postman to test my apis,
Everything is great though I want if any error occurs in my django app so django send me a json error rather than a html page.
I...
Ajay
Votes: 0
Answers: 1
Django application global variables in database best praxis
I am a new in django. I storage global application variables inside settings environment folder. But now i need store variables inside Database because i want changes them from django admin.
My way t...
user389128
Votes: 0
Answers: 1
how to create view for django root module
I have a django project with nested smaller apps call: blog, research, report.
I would like to create a view at the root folder (django project level) so that it displays all the blog, research and re...
Dr Linh Chi Nguyen
Votes: 0
Answers: 1