Remind users that club accounts are free.

This commit is contained in:
Sean Hunt 2014-07-22 14:21:41 -04:00
parent a23cd81cf7
commit 5cf982e8d5
3 changed files with 19 additions and 1 deletions

View File

@ -50,6 +50,7 @@ def new_club(*args, **kwargs):
def new_club_user(*args, **kwargs):
push_wizard("New Club Rep Account", [
newmember.ClubUserIntroPage,
newmember.ClubNoPayPage,
newmember.InfoPage,
newmember.NumberOfTermsPage,
newmember.SignPage,
@ -77,6 +78,7 @@ def renew_member(*args, **kwargs):
def renew_club_user(*args, **kwargs):
push_wizard("Renew Club Rep Account", [
renew.ClubUserIntroPage,
newmember.ClubNoPayPage,
renew.UserPage,
renew.EmailPage,
renew.EmailDonePage,

View File

@ -9,7 +9,7 @@ class IntroPage(WizardPanel):
urwid.Text( "Joining the Computer Science Club" ),
urwid.Divider(),
urwid.Text( "CSC membership is $2.00 per term. Please ensure "
"the fee is deposited into the safe before continuing." ),
"the fee is deposited into the cup before continuing." ),
]
def focusable(self):
return False
@ -31,6 +31,15 @@ class ClubIntroPage(WizardPanel):
def focusable(self):
return False
class ClubNoPayPage(WizardPanel):
def init_widgets(self):
self.widgets = [
urwid.Text( "Club representative accounts are free. Please ensure "
"that no money was paid for this account." ),
]
def focusable(self):
return False
class ClubUserIntroPage(WizardPanel):
def init_widgets(self):
self.widgets = [

7
debian/changelog vendored
View File

@ -1,3 +1,10 @@
ceo (0.5.25) stable; urgency=low
* Replace mention of the safe with the cup.
* Remind users that club accounts are free.
-- Sean Hunt <scshunt@csclub.uwaterloo.ca> Tue, 22 Jul 2014 14:20:16 -0400
ceo (0.5.24ubuntu5) saucy; urgency=low
* Packaging for saucy.