Top "Django-urls" questions

The Django URL dispatch system

Django AttributeError 'tuple' object has no attribute 'regex'

I'm using django 1.8 and having trouble with it. I am trying to import tinymce in my project. When I render …

regex django python-2.7 django-urls django-1.8
how to add anchor to django url in template

I am trying to add an anchor to my url in a django template like this: <a data-hover="Are …

django django-templates anchor django-urls
Passing variable urlname to url tag in django template

What I'd like to do (for a recent changes 'widget' - not a django widget in this case) is pass …

python django django-urls django-templates
How to do reverse URL search in Django namespaced reusable application

Consider that I include namespaced reusable application: urlpatterns = patterns('', # ella urls url('^ella/', include('ella.core.urls', …

python django django-urls
Using the URLconf defined in mysite.urls, Django tried these URL patterns, in this order

I have a problem with Django. Actually I want to create a login panel in my new site but when …

python django django-urls django-2.0
Django: Applying permissions in the URL dispatcher?

In my Django application, I have certain permissions which users need in order to access certain views (using django.contrib.…

django django-urls django-permissions
How to test url in django

I would like to test my url in django but I got error message. here are my codes: urls.py …

python django testing django-urls django-testing
New URL on django admin independent of the apps

I am using django 1.4 and Python 2.7. I just have a simple requirement where I have to add a new URL …

django django-admin python-2.7 django-urls django-1.4
How to add namespace url to a django-rest-framework router viewset

I would like to add a url namespace to my api router but when I do the router still looks …

python django django-views django-urls django-rest-framework
How Do I Use A Decimal Number In A Django URL Pattern?

I'd like to use a number with a decimal point in a Django URL pattern but I'm not sure whether …

python regex django django-urls