Changeset - 2a850c49bc5e
[Not reviewed]
0 1 0
Christopher Neugebauer - 8 years ago 2016-08-26 04:17:53
chrisjrn@gmail.com
Fixes some documentation snafus
1 file changed with 2 insertions and 2 deletions:
0 comments (0 inline, 0 general)
registrasion/models/inventory.py
Show inline comments
...
 
@@ -43,13 +43,13 @@ class Category(models.Model):
 
            all of the options.
 

	
 
        limit_per_user (Optional[int]): This restricts the number of items
 
            from this Category that each attendee may claim. This extends
 
            across multiple Invoices.
 

	
 
        display_order (int): An ascending order for displaying the Categories
 
        order (int): An ascending order for displaying the Categories
 
            available. By convention, your Category for ticket types should
 
            have the lowest display order.
 
    '''
 

	
 
    class Meta:
 
        app_label = "registrasion"
...
 
@@ -126,13 +126,13 @@ class Product(models.Model):
 
        reservation_duration (datetime): When a Product is added to the user's
 
            tentative registration, it is marked as unavailable for a period of
 
            time. This allows the user to build up their registration and then
 
            pay for it. This reservation duration determines how long an item
 
            should be allowed to be reserved whilst being unpaid.
 

	
 
        display_order (int): An ascending order for displaying the Products
 
        order (int): An ascending order for displaying the Products
 
            within each Category.
 

	
 
    '''
 

	
 
    class Meta:
 
        app_label = "registrasion"
0 comments (0 inline, 0 general)