vote up 0 vote down star

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?

flag

4 Answers

vote up 3 vote down

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.

link|flag
Yeah, I've been thinking about using threadedcomments... just didn't know if there was a drop-in solution for multiple users. Thanks! – Glen Feb 14 at 17:08
vote up 0 vote down

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.

link|flag
@rz you got your link markup the wrong way, links do not show. – akaihola Feb 14 at 11:46
argh! thanks for noticing, akaihola, sometimes when i post in a hurry... it should be fixed now. – rz Feb 14 at 16:24
vote up 0 vote down

I believe the Sphene Community Tools can do this.

link|flag
vote up 0 vote down

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:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.