Top "Urlconf" questions

How to get the current url name using Django?

I have to build an url dynamically according to the current url. Using the {% url %} tag is the easiest way …

django django-urls urlconf
Django Url, Slug for Detail Page

I'm having trouble configuring my url to display a detail view. Clicking on this link: <a href='{% url …

django slug urlconf
Including a querystring in a django.core.urlresolvers reverse() call

I'm trying to reverse a named URL and include a querystring in it. Basically, I've modified the login function, and …

django reverse urlconf
Django, name parameter in urlpatterns

I'm following a tutorial where my urlpatterns are: urlpatterns = patterns('', url(r'^passwords/$', PasswordListView.as_view(), name='passwords_…

python django django-class-based-views urlconf url-pattern
Using Django's new i18n_patterns: How to fall back to the default language specified in the settings module?

I'm using the new i18n_patterns of Django 1.4: from django.conf.urls import patterns, include, url from django.conf.…

python django internationalization url-routing urlconf
Django: GET css returns 404?

I am developing a Django site and after a series of edits I ran my server again when suddenly - …

python css django http-status-code-404 urlconf
Defining nested namespaces in a URLConf, for reversing Django URLs -- does anyone have a cogent example?

I have been trying to to figure out how to define a nested URL namespace (which look:like:this) in …

python django namespaces url-mapping urlconf