ctrochalakis / django-friendfeed

Django Friendfeed template tags

This URL has Read+Write access

name age message
file .gitignore Loading commit data...
file README
directory django_friendfeed/
file setup.py
README
Django FriendFeeed
==================

A quick & dirty django app introducing friendfeed template tags. For
now there is only what i needed for my blog, that is a friendfeed user
feed template tag. Though the infrastructure is there to implement new
feeds and map the whole friendfeed API to template tags. You just have
write a new FFNode.my_feed() method and send a patch.

Oh, you can see a sample template at templates/ff_user_feed.html 
Usage
=====
settings.py:

INSTALLED_APPS = (
    ...
    'django_friendfeed',
    ...
)

mytemplate.html:

{% load fftags %}

{% ff_user_feed "ctrochalakis" 10 partial/ff.html %}