SpreadBand / django-backcap

Help center for community-driven websites
GNU General Public License v3.0
20 stars 3 forks source link

======= Backcap

Backcap (Am.), to do one an ill-turn by speaking evil of him or carrying tales, or otherwise to "spoil his game."

And that's what your users are going to do with you ! ;-)

What is backcap ?

Backcap is a community-driven support module for any website.

Users can post ideas, problems and questions to your support team. People can vote for or against a feedback and you naturally see what's important for your community.

And if your community starts to grow, users car help each others.

In fact, that's something like an Help Center. And this is why we have developped it, to provides a smart help center for the websites we develop.

Features

For users

For the staff

Notifications are handled using django-notification and can be indexed by haystack.

Requirements

Backcap requires:

Backcap can make use of:

Installation

  1. Add 'backcap' directory to your PYTHON_PATH

  2. Add backcap and its dependencies to your INSTALLED_APPS in settings.py::

    INSTALLED_APPS = ( ... 'notification', 'voting', 'backcap', ... )

  3. Add the context processor::

    TEMPLATE_CONTEXT_PROCESSORS = ("django.contrib.auth.context_processors.auth", ... 'backcap.context_processors.backcap_forms', ... )

  4. Run syncdb and migrations::

    $ ./manage.py syncdb

    $ ./manage migrate backcap

  5. Add backcap to urls::

    urlpatterns = patterns('', ... url(r'^feedback/', include('backcap.urls')), ... )

  6. Write templates and you're done