Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

16
votes
5answers
3k views

How do you use Django URL namespaces?

I'm trying to get the hang of Django URL namespaces. But I can't find any examples or documentation. Here is what I have tried. urls.py: from django.conf.urls.defaults import * urlpatterns = ...
10
votes
2answers
719 views

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', namespace="ella")), ) Now, the Ella applications has ...
9
votes
1answer
405 views

Django: information leakage problem when using @login_required and setting LOGIN_URL

I found a form of information leakage when using the @login_required decorator and setting the LOGIN_URL variable. I have a site that requires a mandatory login for all content. The problem is that ...
9
votes
3answers
2k views

Django: Arbitrary number of unnamed urls.py parameters

I have a Django model with a large number of fields and 20000+ table rows. To facilitate human readable URLs and the ability to break down the large list into arbitrary sublists, I would like to have ...
8
votes
3answers
1k views

Anyone knows good Django URL namespaces tutorial?

I'm looking for a good tutorial for URL namespaces in Django. I find official documentation a little too sparse - it lacks good examples. I found similar question here on stack, but the answers didn't ...
7
votes
2answers
655 views

Django localeURL when WSGIScriptAlias is /PREFIX

Good morning everyone, Introduction I Got a question about localeURL usage. Everything works great for me with url like this : http://www.mysite.com/ If I type http://www.mysite.com/ in adress ...
7
votes
3answers
7k views

How does one add default (hidden) values to form templates in Django?

Given a Django.db models class: class P(models.Model): type = models.ForeignKey(Type) # Type is another models.Model class name = models.CharField() where one wishes to create a new P with a ...
7
votes
4answers
2k views

How does one put a link / url to the web-site's home page in Django?

In Django templates, is there a variable in the context (e.g. {{ BASE_URL }}, {{ ROOT_URL }}, or {{ MEDIA_URL }} that one can use to link to the "home" url of a project? I.e. if Django is running in ...
6
votes
1answer
478 views

My Django URLs not picking up dashes

Im trying to work out a url that will match domain.com\about-us\ & domain.com\home\ I have a url regex: ^(?P<page>\w+)/$ but it won't match the url with the - in it. I've tried ...
5
votes
2answers
399 views

Django url templatetag (but not reverse() ) error: Caught NoReverseMatch while rendering

I'm trying to use the url template tag as such: {% url all-labs-map %} but when i view the page, i get this error: Caught NoReverseMatch while rendering: Reverse for 'all-labs-map' with ...
5
votes
1answer
1k views

Making a Regex Django URL Token Optional

You have a URL which accepts a first_name and last_name in Django: ('^(?P<first_name>[a-zA-Z]+)/(?P<last_name>[a-zA-Z]+)/$','some_method'), How would you include the OPTIONAL URL token ...
5
votes
6answers
2k views

Django problem of resolving special characters in url

We have a website made by Django. And there is no problem when access following url on local working environment: http://site/tags/c%23/ "c%23" is urlencode of "c#", that works fine locally. But ...
4
votes
2answers
415 views

Programmatically add URL Patterns in Django?

Is there a way to programmatically add URL Patterns to Django without having to restart the server? Or is there a way force Django to reprocess/cache URL patterns ( the URLconf )?
4
votes
4answers
2k views

No module named backends.default.urls

So I've installed django-registration through easy_install. I'm following a quick start guide and I'm trying to setup my urlConf, however it says module named backends.defauls.urls is not found. What ...
4
votes
1answer
405 views

How do I redirect in Django with context?

I have a view that validates and saves a form. After the form is saved, I'd like redirect back to a list_object view with a success message "form for customer xyz was successfully updated..." ...
4
votes
4answers
333 views

Django url debugger

I'm developing a django application and over time, the URLs have grown. I have a lot of them with me now and due to some change I made, one view started to malfunction. When I try to GET ...
4
votes
2answers
217 views

How to use namespace urls with django in a reusuable app

I have a django app, a forum app, that has templates with it. In those templates, there are urls that point to parts of the app. For instance the thread_list template has links to each thread like so: ...
4
votes
1answer
2k views

How to access url hash/fragment from a Django Request object

As in the title: how can I access the url hash/fragment (the part following the dash #) from a Django view and so, I suppose, from a Django Request object? I've not found enough information on the ...
4
votes
2answers
151 views

Regular expresion for urlpattern

I need a regexp for a URL like: /slug/#slug/slug/ I know it should be something like: r'^(?P<slug1>[-\w]+)/#(?P<slug2>[-\w]+)/(?P<slug3>[-\w]+)/$' But I am having problems with ...
4
votes
1answer
449 views

Django: What is the difference b/w HttpResponse vs HttpResponseRedirect vs render_to_response

The above mentioned things are giving me almost the same results was wondering whats the main difference in them.
4
votes
3answers
5k views

Django named urls unrecognized by template url tags

In projects/urls.py I have: urlpatterns = patterns('bizteen.projects.views', url(r'^browse/$', 'browse', name='projects-browse-main'), url(r'^browse/(\d+)/$', 'browse', ...
4
votes
4answers
1k views

Linking to the django admin site

Very basic question, but I'm having trouble tracking down the answer on the web. I have a template, which I want to link to the django admin site (i.e. localhost:8000/admin). What is the code for ...
3
votes
3answers
69 views

How can I centralize URLs in Django templates?

I made a mistake while writing my Django application in hard coding all the URLs in my templates. For instance, my links look like: <a href="/course/63/">Advanced Basketweaving</a> ...
3
votes
1answer
60 views

Pass a variable ( a flag ) from urls.py to views.py in django

I am quite new to django. This may be a very easy stuff for a seasoned coder but I can't figure out how I could easily accomplish this feature. I currently have a 'blog' app which will display ...
3
votes
3answers
262 views

Django Passing list of objects to template

I have trouble of passing my get_profiles in the same template as r'^compose/$' here. r'^users/$' is what I'm using as a model and it works. "compose" is a function in my views.py. from ...
3
votes
2answers
476 views

Get django object id based on model attribute

I have a basic model named "Places" which has this view: def view_index(request, place_name): The user will access that view with a URL like this one: http://server.com/kansas "kansas" is a ...
3
votes
1answer
249 views

include() and flatpages confusion

I'm following Apress: Practical Django Projects and I've come across something that confuses me a little. When I set up my url.py to point to flatpages it works fine if I do this: ... (r'', ...
3
votes
1answer
126 views

Variable number of fields in Django URL

I'd like a URL of the form: ... field1/eq/value1/field2/gt/value2/ ... Where I want to filter the contents of the page in the view function based on an arbitrary number of fields (the names of ...
3
votes
1answer
120 views

Error when redirecting after login in Django 1.2

I've been getting this error: The requested admin page does not exist. I've got a view at the URL /members/ which is protected by @login_required. When I'm not logged-in and visit the /members/ ...
3
votes
1answer
485 views

Does Django cache url regex patterns somehow?

I'm a Django newbie who needs help: Even though I change some urls in my urls.py I keep on getting the same error message from Django. Here is the relevant line from my settings.py: ROOT_URLCONF = ...
3
votes
2answers
316 views

Site name appearing in django URLs

I'm having an issue where a call to the url template tag in Django is appending the site name (I don't want it in there.) Let's say that the site name is 'mysite'. So for example: <a href="{% ...
3
votes
3answers
471 views

Is there something similar to 'rake routes' in django?

In rails, on can show the active routes with rake (http://guides.rubyonrails.org/routing.html): $ rake routes users GET /users {:controller=>"users", :action=>"index"} ...
3
votes
1answer
542 views

Dynamic SEO-friendly URLs

I'd like to deploy dynamic URL's for my app in two ways: when viewing available vehicle, I get a link like: http://www.url.com/2006-Acura-MDX-Technology-Package I also have a filter page, so here, ...
3
votes
1answer
79 views

How to find which view is resolved from url in presence of decorators

For debugging purposes, I'd like a quick way (e.g. in manage.py shell) of looking up which view that will be called as a result of a specific URL being requested. I know this is what ...
3
votes
1answer
405 views

Django Comment, append symbol to the url comment?

im using the comment system, now, i would like to re-write the segment form the url comment and append a symbol #, i want to move the page seccion to the comment list exactly to the last comment user ...
3
votes
3answers
1k views

detect the HOST domain name in django models

In my model, I want to use the domain name (HOST) I'm using in my views. In views that'd be doable, thanks to the "request" object. But how do I do this models methods? Which don't use "HttpRequest" ...
3
votes
2answers
5k views

Django: How can you get the current URL tagname (for pagination)?

I'm trying to do pagination with the page parameter in the URL (instead of the GET parameter). I also want my pagination to be shared code across multiple different templates. Given that, I think I ...
3
votes
3answers
887 views

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 it's actually possible (I'm not a regex expert). Here's what I want to use for URLs: /item/value/0.01 ...
3
votes
2answers
1k views

Django: Dynamic LOGIN_URL variable

Currently, in my settings module I have this: LOGIN_URL = '/login' If I ever decide to change the login URL in urls.py, I'll have to change it here as well. Is there any more dynamic way of doing ...
3
votes
2answers
603 views

What's the best way to map the main urls in a django project?

I've got a django project that contain some apps. The main urls.py includes the urls.py from the apps I've enabled, and all is good. Now I want to configure the project so that when you go to ...
2
votes
2answers
48 views

Django changing rendered url in a view

I want to change the display URL of a rendered response object. I have a single view "view1" and it is called by a URL, "localhost/foo/view1" . On some condition in view1 I want to change rendered URL ...
2
votes
1answer
44 views

Raise Http404 in url pattern

I'm trying to override a url in django-profiles to raise a 404 instead of passing to the view. I'm looking for something along the lines of: url(r'^profiles/$', lamdba x: raise Http404) But the ...
2
votes
1answer
90 views

Reverse custom django Admin Site urls?

Is there a way to reverse URLs added to a custom django AdminSite, for example class MyAdminSite(AdminSite): def get_urls(self): urls = super(MyAdminSite, self).get_urls() my_urls ...
2
votes
2answers
115 views

Django URL Design

I often find myself falling into a world in which I am not so sure about the URLs that I came up with. I think that's mainly because I have a few questions regarding URL design in django that remain ...
2
votes
1answer
446 views

The included urlconf manager.urls doesn't have any patterns in it

A solution: Found the following django snippet that seems to work fine (http://djangosnippets.org/snippets/2445/) from django.utils.functional import lazy from django.core.urlresolvers import reverse ...
2
votes
1answer
106 views

Django Sites - Different urls.py for two sites

I maintain a Django webapp for a client of mine. We built it out in Django and for computer users, it's great. We now want to cater to mobile device users. On top of a template switch, we also need ...
2
votes
1answer
253 views

Django dynamic url. what am i doing wrong?

So I have this URL scheme: (r'^test/(?P<name>\d+)/', 'test'), def test(request, name): html = "it worked" return HttpResponse(html) however, when I go to the following URL, I get a ...
2
votes
1answer
407 views

django-registration view customization

I'm using django-registration (see: https://bitbucket.org/ubernostrum/django-registration ) on one of my projects. The standard setup for the django-registration is to add a the code below in the ...
2
votes
2answers
289 views

How to access HttpRequest from urls.py in Django

Basically I want to use a generic view that lists objects based on a username. Now, the question is, how do I do something like: (r'^resources/$', ListView.as_view( ...
2
votes
3answers
144 views

Django - view, url weirdness

I've noticed a strange behavior with how Django is processing my url patterns. A user should login and then be redirected to their profile page. I also have the ability for a user to edit their ...

1 2 3 4 5 8