django-rsvp is a simple RSVP application for use with Django. The intent is to be able to basic events, send guests invite e-mails and collect their response if they will be attending or not.
django-rsvp requires:
- Python 2.3+
- Django 1.0+
The only potential dependency within Django is that django.contrib.sites is in INSTALLED_APPS in order to make the included e-mail template work.
- Either copy/symlink the
rsvpapp into your project or place it somewhere on yourPYTHONPATH. - Add
rvspapp to yourINSTALLED_APPS. - Set the
RSVP_FROM_EMAILsetting to an e-mail address you'd like invites to be sent from. - Run
./manage.py syncdb. - Add
(r'^rsvp/', include('rsvp.urls')),to yoururls.py.