public static Result newTask() { Form<Task> filledForm = taskForm.bindFromRequest(); if (filledForm.hasErrors()) return badRequest(views.html.task.render(Task.all(), filledForm)); else { Task.createTask(filledForm.get()); return redirect(routes.Application.getTasks()); } }
public static Result tasks() { return ok(views.html.index.render(Task.all(), taskForm)); }
public static Result getTasks() { return ok(task.render(Task.all(), taskForm)); }