[Notice] Announcing the End of Demo Server [Read me]
Sangcheol Hwang 2012-11-24
initial commit
@df5c18424ae7242d1d050b96762abfe46b5e55a4
app/controllers/HelpApp.java
--- app/controllers/HelpApp.java
+++ app/controllers/HelpApp.java
@@ -2,9 +2,10 @@
 
 import play.mvc.Controller;
 import play.mvc.Result;
+import views.html.help.*;
 
 public class HelpApp extends Controller {
 	public static Result help() {
-		return ok(views.html.underconstruction.render("help"));
+		return ok(toc.render("help"));
 	}
 }
 
app/views/help/toc.scala.html (added)
+++ app/views/help/toc.scala.html
@@ -0,0 +1,6 @@
+@(message: String)
+
+@home(message) {
+    <h1>Help</h1>
+}
+
Add a comment
List