Esempio n. 1
0
 def GET(self):
     tasks = Task.getall()
     users = User.getall()
     projects = Project.getall()
     return render().index(tasks, users, projects,
                         priorities=PRIORITIES, statuses=STATUSES)
Esempio n. 2
0
 def GET(self):
     users = User.getall()
     return render().adduser(users)