0
votes
How do I use django.core.urlresolvers.reverse with a function reference instead of a named URL pattern?
Jack M.'s example is nearly correct.
It needs to be a url function, not a tuple, if you want to use named urls.
url(r'^no_monkeys/$', 'views.noMonkeys', {}, "no-monkeys"),
…
1
vote
Is there any list of blog engines, written in Django?
Nathan Borror has a great package of 'basic apps' that has a blog. These are well written, well documented apps that you should try out, get ideas from, etc.
…
7
votes
Is there an easy way to populate SlugField from CharField?
for Admin in 1.0, you'd need to use
prepopulated_fields = {'slug':('title',),}
in your admin.py
Your key in the prepopulated_fields dictionary is the field …
11
votes
Django: Capturing url parameters in request.GET
If your url is something like http://domain/search/?q=haha, then you would use request.GET.get('q', '').
q is the para …
