Revision history [back]
Done a while ago.
We've also created a django app django-followit
, which is available for reuse on pypi and
github.
To use it, just add to your models
import followit
follow.register(MyModel)
and add to the urls.py
(r'^followit/', include('followit.urls')),
Then run
python manage.py syncdb
More models to follow can be added later and the follow function activated by re-running syncdb
.
To follow or unfollow, post to the urls described here.
Done a while ago.
We've also created a django app django-followit
, which is available for reuse on pypi and
github.
To use it, just add to your models
import followit
follow.register(MyModel)
and add to the urls.py
(r'^followit/', include('followit.urls')),
Then run
python manage.py syncdb
More models to follow can be added later and the follow function activated by re-running syncdb
.
Done a while ago.
We've also created a django app django-followit
, which is available for reuse on pypi and
github.
To use it, just add to your models
import followit
follow.register(MyModel)
and add to the urls.py
(r'^followit/', include('followit.urls')),
Then run
python manage.py syncdb
More models to follow can be added later and the follow function activated by re-running syncdb
.
To follow or unfollow, post to the urls described here.
Done a while ago.
We've also created a django app django-followit
, which is available for reuse on pypi and
github.
To use it, just add to your models
import followit
follow.register(MyModel)
and add to the urls.py
(r'^followit/', include('followit.urls')),
Then run
python manage.py syncdb
More models to follow can be added later and the follow function activated by re-running syncdb
.
Done a while ago.
We've also created a django app django-followit
, which is available for reuse on pypi and github.