https://github.com/toastdriven/django-rsvp
A simple RSVP app.
https://github.com/toastdriven/django-rsvp
Last synced: 11 months ago
JSON representation
A simple RSVP app.
- Host: GitHub
- URL: https://github.com/toastdriven/django-rsvp
- Owner: toastdriven
- License: mit
- Created: 2008-09-19T02:42:21.000Z (over 17 years ago)
- Default Branch: master
- Last Pushed: 2014-08-21T00:23:51.000Z (over 11 years ago)
- Last Synced: 2025-06-07T16:54:56.332Z (11 months ago)
- Language: Python
- Homepage:
- Size: 151 KB
- Stars: 31
- Watchers: 6
- Forks: 7
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
- Changelog: CHANGELOG.txt
- License: LICENSE.txt
Awesome Lists containing this project
README
===============================
django-rsvp: A simple RSVP app.
===============================
``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.
Requirements
============
``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.
Installation
============
#. Either copy/symlink the ``rsvp`` app into your project or place it
somewhere on your ``PYTHONPATH``.
#. Add ``rvsp`` app to your ``INSTALLED_APPS``.
#. Set the ``RSVP_FROM_EMAIL`` setting to an e-mail address you'd like
invites to be sent from.
#. Run ``./manage.py syncdb``.
#. Add ``(r'^rsvp/', include('rsvp.urls')),`` to your
``urls.py``.