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
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(),
    }