= Django Forum Apps Comparison = Yvan Seth's blog entry [http://yvan.seth.id.au/Entries/Technology/Code/Django_Forum_Software.html Django Forum Software] from December 2007 lists a few well-known discussion forum applications for Django. This page continues on the same tracks and tries to gather a comparison of essential features in those applications. [[BR]] {{{ #!html
Feature | Description |
demo | If the application has a public demo site, a link and login/password are given. |
guest-post | Visitors can post messages without registration. |
notify | An administrator can be notified by E-mail and/or SMS about new messages. Note that this feature should be trivial to add to most apps with signals and external code only. |
pre-moderate | It's possible to hide new messages until they are approved by an administrator. |
post-moderate | The app provides a user interface for removing messages. |
comment | Any Django model instance can have a message thread attached to it. |
forum | The app provides the concept of a forum inside which message threads are grouped. |
title | Individual messages can have their own titles. |
modify | Users can modify messages. |
msg-history | When message are modified, everyone can see the change history. |
private | Users can send private messages to other users. |
Application | Author(s) | demo | guest-post | notify | pre-moderate | post-moderate | comment | forum | title | modify | msg-history | private |
contrib.comments | Django authors | ? | yes | no? | ? | ? | ? | ? | ? | ? | ? | ? |
comment-utils | James Bennett | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
django-threadedcomments | Eric Florenzano | Here | yes | yes | yes | yes | yes | no | no | yes | no | no |
django-forum | Ross Poulton | Soon | no | patch | no | yes * | no | yes | no | no | no | no |
counterpoint | Collin Grady | no | no | no | no | yes | no | yes | ? | yes | no | no |
Django Forum | Jonathan Buchanan | guest/guest | no | no | no | yes | no | yes | no | ? | ? | ? |
snapboard | Bo Shi, JW Mayfield | ? | no | no | no | yes | no | yes * | no | yes | yes | yes |
MyghtyBoard | Piotr Malinski | Forum in use | yes * | yes * | no | yes | not yet | yes | no | yes | no | no |
Sphene | Herbert Poul | anonymous | yes * | reg * | no * | yes * | no | yes | yes | yes | no | no |
Zyons | Ian Holsman? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? | ? |
Column headings and * symbols reveal verbose descriptions when the mouse pointer hovers over them. |