Tagged Questions

5
votes
6answers
721 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
3answers
687 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 …
3
votes
2answers
310 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 …
3
votes
2answers
2k 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 …
2
votes
1answer
41 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 …
2
votes
2answers
154 views

Django URL.py and the index

Hi guys, i want to know, what is the best way to write in the URL.py, im asking bcz im trying to get the index in this way "www.example.com" with (r'',index) but when i try r'' all pages in the …
2
votes
2answers
250 views

No reverse error in Google App Engine Django patch?

I am using Google App Engine patch Django. When I try to go to the admin site, http://127.0.0.1:8080/admin/ , I keep getting this error: TemplateSyntaxError at /admin/ Caught an exception …
2
votes
1answer
240 views

Reverse Not Found: Sending Request Context in from templates

N.B This question has been significantly edited before the first answer was given. Hi, I'm fairly new to django, so apologies if I'm missing something obvious. I've got a urls.py file that looks …
2
votes
4answers
321 views

Specifying different template names in Django generic views

Hi, I have the code in my urls.py for my generic views; infodict = { 'queryset': Post.objects.all(), 'date_field': 'date', 'template_name': 'index.html', 'template_object_name': 'latest_post_list', } …
2
votes
1answer
99 views

How can I pass some information to a view without including it in the URL (django newbie)

I'm working on a little django app for reserving prints of paintings. Customers go to this ordering page, fill out some information (name, email, dedication, etc), pick the print number they want …
2
votes
3answers
402 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 …
1
vote
2answers
60 views

Django: Reversing a URL with a different template

How can I reverse a url but with a different template name? I specifically have to use urlresolvers.reverse To be more specific: I have one view but two urls from which it could be accessed …
1
vote
1answer
127 views

Django - how can I get permalink to work with “throwaway” slug

I'm trying to add slugs to the url in my django app, much like SO does. Currently, I have pages that work just fine with a url like this: http://example.com/foo/123/ I'd like to add 'slugified' …
1
vote
4answers
93 views

Tidy up complex URL dispatcher

I have two different kinds of objects that I'd like to live under the same URL. One group of objects needs to be passed to the view function 'foo' and another group needs to be passed to 'bar'. I'm …
1
vote
3answers
87 views

Modify address in Django middleware

hello, I don't know if it's possible but I'd like to add few parameters at the end of the URL using middleware. Can it be done without redirect after modyfing requested URL? ie. user clicks: …

1 2 3 4 5 6 next
15 30 50 per page