django-userpreferences

Django application that allows you to easily store preferences for your users to choose from
Download

django-userpreferences Ranking & Summary

Advertisement

  • Rating:
  • License:
  • LGPL
  • Publisher Name:
  • Nicolas Patry
  • Publisher web site:
  • http://student.ecp.fr

django-userpreferences Tags


django-userpreferences Description

Django application that allows you to easily store preferences for your users to choose from django-userpreferences is a Django app with the purpose to integrate easily for other apps to use. It aims to be easily added into existing projects.Installing django-userpreferences:Install into your python path using pip or easy_install:: pip install django-userpreferences easy_install django-userpreferencesAdd *'preferences'* to your INSTALLED_APPS in settings.py:: INSTALLED_APPS = ( ... 'preferences', )Add *'(r'^preferences/', include('preferences.urls')'* to your urls:: urlpatterns = patterns( '', .... (r'^preferences/', include('preferences.urls'), )Don't forget to run :: ./manage.py syncdbto create the table that is going to receive the preferences.And if you are using south (you need south if you are upgrading):: ./manage.py migrate Requirements: · Python · Django · django-picklefield


django-userpreferences Related Software