From 98365dcf28d5e5937af970e9956be68614ec4b81 Mon Sep 17 00:00:00 2001 From: Christopher Neugebauer Date: Mon, 25 Apr 2016 19:36:52 +1000 Subject: [PATCH] Adds more to the integration docs --- docs/integration.rst | 14 ++++++++++++-- 1 file changed, 12 insertions(+), 2 deletions(-) diff --git a/docs/integration.rst b/docs/integration.rst index bc83eb49..36d33795 100644 --- a/docs/integration.rst +++ b/docs/integration.rst @@ -3,9 +3,19 @@ Integrating Registrasion Registrasion is a Django app. It does not provide any templates -- you'll need to develop these yourself. You can use the `registrasion-demo `_ project as a starting point. -To use Registrasion for your own conference, you'll need to do a small amount of development work, usually in your own Django App. +To use Registrasion for your own conference, you'll need to do a small amount of configuration and development work, in your own Django App. + +The configuration that you'll need to do is minimal. The first piece of development work is to define a model and form for your attendee profile, and the second is to implement a payment app. + + +Configuring your Django App +--------------------------- + +In your Django ``settings.py`` file, you'll need to add the following to your ``INSTALLED_APPS``:: + + "registrasion", + "nested_admin", -The first is to define a model and form for your attendee profile, and the second is to implement a payment app. Attendee profile