On Sep 16, 4:35 am, ChrisR <robthech...@gmail.com> wrote: > I appreciate the help you gave DR, however, I am still a bit lost. > Any more suggestions or guidance with custom tags? > > I've been looking at the custom tags documentation...
Well, currently you're relying on the extra_context parameter to your generic views to pass in the category list. However, as you've noted, this doesn't work for pages like search which aren't generated by generic views. So take the category_list stuff out of urls.py completely. Instead, use an inclusion tag. This could be as simple as: @register.inclusion_tag('_category_list.html') def category_list(): return {'category_list':Category.objects.all()} Now, take the template code that displays the list out of your base template, and put it into a new file called _category_list.html. Back in the base template, put: {% load mytemplatetags %}{% category_list %} (replace 'mytemplatetags' with whatever you've called the template tag file you created). All done. -- DR. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---