Esempio n. 1
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
Esempio n. 3
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
Esempio n. 4
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
Esempio n. 5
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
Esempio n. 6
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
Esempio n. 7
0
 def handleAction(self, model, entityID, action):
     super(ShowClubInviteHandler,
           self).handleAction(model, entityID, action)
     invite = self.clubsCtrl.getProfile().getInvite(entityID)
     if invite:
         return club_events.showClubProfile(invite.getClubDbID())
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)
Esempio n. 10
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
     return
Esempio n. 11
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
Esempio n. 12
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
Esempio n. 13
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
Esempio n. 14
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
Esempio n. 15
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
Esempio n. 16
0
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
Esempio n. 17
0
 def handleAction(self, model, entityID, action):
     super(ShowClubInviteHandler, self).handleAction(model, entityID, action)
     invite = self.clubsCtrl.getProfile().getInvite(entityID)
     if invite:
         return club_events.showClubProfile(invite.getClubDbID())
Esempio n. 18
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)