Flexible/simple forum application for django 1.5+. Ideal for implementing forums within a social network.
[TODO: Add list of django apps required by arena]
-
Add "arena" to your INSTALLED_APPS setting like this:
INSTALLED_APPS = ( ... 'arena', )
-
Include the arena URLconf in your project urls.py like this:
url(r'^forum/', include('arena.urls')),
-
Run
python manage.py syncdb
to create the arena models. arena also have south migration files; so if you're using it, you can instead runpython manage.py migrate arena
to create the models. -
Start the development server and visit admin panel to create forums (you'll need the Admin app enabled).
-
Visit /forums to create forum threads and participate in forums.
django-arena is licensed under the terms of the Apache License, version 2.0. For more information, see LICENSE file.