Tidies up some docs

This commit is contained in:
Christopher Neugebauer 2016-04-25 18:34:28 +10:00
parent fd751b4ea1
commit cbecbf9a41
3 changed files with 6 additions and 2 deletions

View file

@ -1,7 +1,7 @@
Integrating Registrasion 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. 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.
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 development work, usually in your own Django App.

View file

@ -4,6 +4,11 @@ Inventory Management
Registrasion uses an inventory model to keep track of tickets, and the other various products that attendees of your conference might want to have, such as t-shirts and dinner tickets. Registrasion uses an inventory model to keep track of tickets, and the other various products that attendees of your conference might want to have, such as t-shirts and dinner tickets.
All of the classes described herein are available through the Django Admin interface.
Overview
--------
The inventory model is split up into Categories and Products. Categories are used to group Products. The inventory model is split up into Categories and Products. Categories are used to group Products.
Registrasion uses conditionals to build up complex tickets, or enable/disable specific items to specific users: Registrasion uses conditionals to build up complex tickets, or enable/disable specific items to specific users:

View file

@ -278,7 +278,6 @@ class CartController(object):
def _append_errors(self, errors, ve): def _append_errors(self, errors, ve):
for error in ve.error_list: for error in ve.error_list:
print error.message
errors.append(error.message[1]) errors.append(error.message[1])
def validate_cart(self): def validate_cart(self):