コード例 #1
0
ファイル: goals.py プロジェクト: umfoida5/comp4350group5
 def index(self):
     tmpl = env.get_template('goals.html')
     return tmpl.render()
コード例 #2
0
ファイル: health.py プロジェクト: umfoida5/comp4350group5
 def index(self):
     tmpl = env.get_template('health.html')
     return tmpl.render()
コード例 #3
0
ファイル: activities.py プロジェクト: umfoida5/comp4350group5
 def index(self):
     tmpl = env.get_template('activities.html')
     return tmpl.render()
コード例 #4
0
 def badges(self):
     tmpl = env.get_template('achievements.html')
     return tmpl.render()
コード例 #5
0
ファイル: profiles.py プロジェクト: umfoida5/comp4350group5
 def index(self):
     tmpl = env.get_template('profile.html')
     return tmpl.render()
コード例 #6
0
ファイル: root.py プロジェクト: umfoida5/comp4350group5
 def about(self):
     tmpl = env.get_template('about.html')
     return tmpl.render()