Top "Django-urls" questions

The Django URL dispatch system

Django urls uuid not working

In the following, if the url is set as ,what should be the pattern for uuid? urls.py url(r'^…

django django-urls
Django: request.GET and KeyError

Code: # it's an ajax request, so parameters are passed via GET method def my_view(request): my_param = request.GET[…

python django django-urls
For a django model, how can I get the django admin URL to add another, or list objects, etc.?

As much as I love the django documentation, the section on bookmarklets in the admin is strangely vague. My question …

django django-admin django-urls
Django URLs - can't reverse url in a template

I think I need a second pair of eyes. The below example should be self explanatory. All I need is …

django django-urls
Django dynamic urls

I am developing a website using Django as the backend, and I want to allow the customer to add new …

python django django-urls
Python Error: name 'admin' is not defined

I am creating a Python application in Django for the first time. I know that I must uncomment the admin …

python django django-models django-admin django-urls
Using Python Regular Expression in Django

I have an web address: http://www.example.com/org/companyA I want to be able to pass CompanyA to …

python regex django django-urls
Should every django app within a project have it's own urls.py?

I am working on a django project which will contain several apps. Each app will have their own set of …

django django-urls
How do I unit test django urls?

I have achieved 100% test coverage in my application everywhere except my urls.py. Do you have any recommendations for how …

django unit-testing tdd django-urls
'Manager' object is not callable

I keep getting this error on my views. I can't work it out as the code is similar to the …

django django-templates django-urls django-views