Ejemplo n.º 1
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
Ejemplo n.º 2
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
Ejemplo n.º 3
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
Ejemplo n.º 4
0
 def openClubProfile(self, clubDbID):
     club_events.showClubProfile(clubDbID)
Ejemplo n.º 5
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
Ejemplo n.º 6
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
Ejemplo 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)
Ejemplo n.º 10
0
 def openCrewStatistic(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
     self.destroy()
     return
Ejemplo n.º 11
0
 def showFormationProfile(self, clubDbID):
     showClubProfile(long(clubDbID))
Ejemplo n.º 12
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
Ejemplo n.º 13
0
 def showStaticTeamProfile(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID())
Ejemplo n.º 14
0
 def handleAction(self, model, entityID, action):
     super(ShowClubAppsHandler, self).handleAction(model, entityID, action)
     return club_events.showClubProfile(entityID, viewIdx=1)
Ejemplo n.º 15
0
 def showStaticTeamStaff(self):
     club = self.getClub()
     if club is not None:
         club_events.showClubProfile(club.getClubDbID(), viewIdx=1)
Ejemplo n.º 16
0
 def onClubCreated(self, clubDBID):
     club_events.showClubProfile(clubDBID)
Ejemplo 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())
Ejemplo n.º 18
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
Ejemplo n.º 19
0
 def showRallyProfile(self, clubDBID):
     club_events.showClubProfile(clubDBID)
 def showTeamCard(self):
     club_events.showClubProfile(self.__clubDBID)