Does anyone know of a django forum plugin that allows each member to have his own forum? If there isn't anything, than what would be the best way to accomplish this with a "regular" forum plugin for Django?
|
|
I once created a feature matrix of all Django forum apps I could find. It might be a bit outdated now, though (contributions welcome). At least django-threadedcomments uses generic foreign keys, so you can attach a message thread to any database object, including users. |
|||
|
|
|
Check out diamanda. I'm not sure it does what you need as far as the each user having its forums, but that's probably not too hard to hack on top. Probably as simple as adding a few ForeignKeys into auth.User to the diamanda models. In general django pluggables and djangoapps are good places to look for django stuff that is already written. Also, check out pinax. |
|||
|
|
I believe the Sphene Community Tools can do this. |
|||
|
|
|
|
Yep, the forum app of SCT can be used for this - simply set it up and create multiple "community Groups" (these are similar to vhosts) and map them to subdomains - each community group would have separate forum categories, can have separate templates, separate user permissions, etc. (but they will obviously share the same django users and their profiles) - as an example.. the following websites are all hosted on the same instance:
|
|||
|
|
