예제 #1
0
 def __init__(self, *args, **kwargs):
     self.header_box = args[2].lower()
     self.multiline = args[1]
     name = args[0]
     Form.__init__(self,name, **kwargs)
     self._header_box = []
     self.headerflag = False
     self.form_name_current = None
 def __init__(self):
     self.path = [MainForm.name, self.name]
     self.items = ['join check in', 'back']
     Form.__init__(self, self.path, self.items)
 def __init__(self):
     self.items = ['student login', 'teacher login', 'exit']
     Form.__init__(self, self.path, self.items)
예제 #4
0
 def __init__(self, *args, **kwargs):
     Form.__init__(self,*args, **kwargs)
     self._header_box = []
예제 #5
0
 def __init__(self):
     self.path = [MainForm.name, self.name]
     self.items = ['start check in', 'update check in detail', 'history',  'progress','back']
     Form.__init__(self, self.path, self.items)
예제 #6
0
 def __init__(self):
     self.path = [MainForm.name, TeacherForm.name,self.name]
     self.items = ['Attendance', 'Absence','Real-time Detail Records','Real-time Check in list','back']
     Form.__init__(self, self.path, self.items)
예제 #7
0
 def __init__(self):
     self.path = [MainForm.name,TeacherForm.name,self.name]
     self.items = ['browse sum', 'browse detail file','browse once check in','back']
     Form.__init__(self, self.path, self.items)
예제 #8
0
 def __init__(self):
     self.path = [MainForm.name, TeacherForm.name, self.name]
     self.items = ['update once check in','back']
     Form.__init__(self, self.path, self.items)
예제 #9
0
 def __init__(self):
     self.path = [MainForm.name,TeacherForm.name,self.name]
     self.items = ['start auto check in', 'start manual check in','start random check in', 'back']
     Form.__init__(self, self.path, self.items)