here's the code:

TEMPLATE
{% load more_news %}
{% get_morenews_list %}
{% for news in more_news %}
        <a href="{{ news.get_absolute_url }}">{{ news.title }}</a>
{% endfor %}

MORE_NEWS.PY
from myproject.site.models import Blog
from django.template import Library,Node

register = Library()

def build_morenews_list(parser, token):

    return NewsObject()

class NewsObject(Node):
    def render(self, context):
        context['more_news'] = Blog.blog_live.all().order_by('-
pub_date')[2:6]
        return ''

register.tag('get_morenews_list', build_morenews_list)




On Jul 3, 10:45 am, [EMAIL PROTECTED] wrote:
> thanks man, for some reason i couldn't get it and it was about to
> drive me nuts :)
>
> On Jul 3, 10:37 am, Berco Beute <[EMAIL PROTECTED]> wrote:
>
> > It should be in:
> > /project/application/templatetags/
>
> > 2B
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to