Skip to main content

A simple forums app for Django

Project description

Important Note

This package is currently in early alpha (version < 1.0.0). This means that backwards incompatible changes can be introduced at any time as described here.

Installation

The easiest way to install simple forums is using pip:

$ pip install django-simple-forums

Usage

Add simple_forums to your INSTALLED_APPS in settings.py:

INSTALLED_APPS = [
        # default django apps
        ...
        'simple_forums',
        ...
        # your custom apps
]

In order to use the views included in simple forums, you must include the url patterns for the forums in your urls.py:

url_patterns = [
        ...
        url(r'^forums/', include('simple_forums.urls')),
        ...
]

Finally, apply the migrations from simple forums:

$ ./manage.py migrate

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django_simple_forums-0.11.1.tar.gz (3.3 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page