On Thu, 2008-07-03 at 07:33 -0700, [EMAIL PROTECTED] wrote: > On my homepage I want to have a few different items, one is the recent > news items. I created the recentnews.py file: > > from myproject.site.models import Blog > from django.template import Library,Node > > register = Library() > > def build_news_list(parser, token): > > return NewsObject() > > class NewsObject(Node): > def render(self, context): > context['recent_news'] = Entry.entry_live.all().order_by('- > pub_date')[:15 ] > return '' > > register.tag('get_news_list', build_news_list) > > For some reason I can't remember/figure out where this file, with the > __init__.py file. I was thinking it was in /myproject/templates/ > templatetags/ but that isn't working.
I think you left out some words from the first sentence in that paragraph. If you are asking where to put this file, <app_name>/templatetags/ is the place (for any <app_name> you have installed). So, unless you have an app called "templates", your current location isn't going to work. If you do have an app called "templates", then your problem is something other than the wrong location (since you've mentioned you remembered to include __init__.py). Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---