Fixes the documentation for installation.

This commit is contained in:
Christopher Neugebauer 2016-04-26 13:54:28 +10:00
parent 63d15a6be3
commit cd194ab133
2 changed files with 16 additions and 3 deletions

View file

@ -1,5 +1,5 @@
Integrating Registrasion Installing and 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 <https://github.com/chrisjrn/registrasion-demo>`_ project as a starting point. Registrasion is a Django app. It does not provide any templates -- you'll need to develop these yourself. You can use the `registrasion-demo <https://github.com/chrisjrn/registrasion-demo>`_ project as a starting point.
@ -8,6 +8,19 @@ To use Registrasion for your own conference, you'll need to do a small amount of
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. 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.
Installing Registrasion
-----------------------
Registrasion depends on an in-development version of Symposion. You'll need to add the following two lines to your ``requirements.txt`` files::
git+https://github.com/pinax/symposion.git@ad81810
git+https://github.com/chrisjrn/registrasion.git@releases/0.1
Symposion currently specifies Django version 1.9.2.
Running ``pip install -r requirements.txt`` will pull down the git version of Symposion as well as the current 0.1 release of Registrasion.
Configuring your Django App Configuring your Django App
--------------------------- ---------------------------

View file

@ -38,4 +38,4 @@ You'll need to render the following Django models in order to view invoices.
.. autoclass:: LineItem .. autoclass:: LineItem
.. autoclass:: PaymentBase See also: :class:`PaymentBase`