Skip to content
This repository has been archived by the owner on Jan 15, 2019. It is now read-only.

ajoen/django-arena

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

django-arena

Flexible/simple forum application for django 1.5+. Ideal for implementing forums within a social network.

Dependencies

[TODO: Add list of django apps required by arena]

Quick start

  1. Add "arena" to your INSTALLED_APPS setting like this:

    INSTALLED_APPS = (
        ...
        'arena',
    )
    
  2. Include the arena URLconf in your project urls.py like this:

    url(r'^forum/', include('arena.urls')),
    
  3. 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 run python manage.py migrate arenato create the models.

  4. Start the development server and visit admin panel to create forums (you'll need the Admin app enabled).

  5. Visit /forums to create forum threads and participate in forums.

License

django-arena is licensed under the terms of the Apache License, version 2.0. For more information, see LICENSE file.

About

Flexible/simple forum application for django 1.5+. Ideal for implementing forums within a social network.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages