public
Description: k9 is a complete Django based Project for my k9 rescue dog unit. See Wiki for details.
Homepage: http://www.rettungshunde-stralsund.de/
Clone URL: git://github.com/bartTC/k9.git
k9 / context_processors.py
ae2d11a3 » bartTC 2008-05-28 First inject of data from m... 1 from django.conf import settings
2 from k9.apps.links.models import LinkCategory
3
4 def link_categories(request):
5 return {
6 'link_categories': LinkCategory.objects.all(),
7 }