Source code for feriennet.const

#: Describes the states which are visible to the given role (not taking
# ownership in account!)
[docs] VISIBLE_ACTIVITY_STATES = { 'admin': ( 'preview', 'proposed', 'accepted', 'archived' ), 'editor': ( 'accepted', ), 'member': ( 'accepted', ), 'anonymous': ( 'accepted', ) }
#: Describes the states an owner editor can edit
[docs] OWNER_EDITABLE_STATES = ('preview', 'proposed')
#: Default donation amounts
[docs] DEFAULT_DONATION_AMOUNTS = (10, 30, 50)