diff --git a/docs/integration.rst b/docs/integration.rst index bdf7845b4032a1f4c5eefcd4e197e54653d02f38..bc83eb4944df7e3aeed76cb22f056ea1386847e6 100644 --- a/docs/integration.rst +++ b/docs/integration.rst @@ -1,7 +1,7 @@ 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 `_ 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. diff --git a/docs/inventory.rst b/docs/inventory.rst index 65ac9c46dc059b238912dc89185263ed50de8784..c9d6dec1a96dcb7353f3fa5c3d47ebadf5bb21f7 100644 --- a/docs/inventory.rst +++ b/docs/inventory.rst @@ -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. +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. Registrasion uses conditionals to build up complex tickets, or enable/disable specific items to specific users: diff --git a/registrasion/controllers/cart.py b/registrasion/controllers/cart.py index 15c65d663e8be6bff9af4ec11e865ef067ff59c1..20bd6b5c217a34721b6bf9ee00097d74d46117ed 100644 --- a/registrasion/controllers/cart.py +++ b/registrasion/controllers/cart.py @@ -278,7 +278,6 @@ class CartController(object): def _append_errors(self, errors, ve): for error in ve.error_list: - print error.message errors.append(error.message[1]) def validate_cart(self):