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
bartTC (author)
Sat May 23 08:45:27 -0700 2009
commit  6180fd0d777f24682aff44941f0a21d86a3d97d6
tree    4807cb3b997116198c2787725dfb75d264cf3f8a
parent  fc19f3961c1c0328f0860af27fcfb627a0d5d433
k9 / context_processors.py
100644 7 lines (6 sloc) 0.183 kb
1
2
3
4
5
6
7
from django.conf import settings
from k9.apps.links.models import LinkCategory
 
def link_categories(request):
    return {
        'link_categories': LinkCategory.objects.all(),
    }