I installed the followit module as per the documentation, restarted my server, but still don't see any option to follow a user. Has this feature truly been implemented? Am I doing something wrong or overlooking something?
After the "followit" is added to the list of INSTALLED_APPS, and you run syncdb, in the output you should see info on newly created tables for following users.
If it does not tell that the tables were created, then something is wrong. The feature works here and on my development server.
Also a line must be added to your project's top level urls.py.
The app should allow to install the "bridge" tables after registering the models to follow anywhere in the models module. In askbot it is done
try:
import followit
followit.register(User) #allow users to follow other users
except ImportError:
#don't do anything if followit app is not installed on the system.
pass
This app creates a bridge model programmatically when calling followit.register(some_model_to_follow).
When you run syncdb it will also install any missing tables (but will not remove any unused tables) It is possible to register other models later and run syncdb again.
At the same time it adds methods:
To User (where x is the lowercased name of the model to follow):
To the followed model - get_followers().
Create your Q&A site at askbot.com. Managed Askbot hosting at just $15/mo. Dedicated hosting, support contracts, consulting services.
create your Q&A siteAsked: 2011-06-03 15:04:34 -0500
Seen: 68 times
Last updated: Jun 03 '11
Is it possible to follow a user on AskBot?
Is Notifyme button available for all users
What does "follow question" do?
How come user-following doesn't work?
How does following users work?
Receiving double notifications if I comment/answer and follow a question
Play a sound when a question I asked or am following receives an answer
Show icons for users following a question
Copyright Askbot, 2010-2011. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.