@** * Default page for 404 Not Found responses, in development mode. * This page display the routes file content. *@ @(method: String, uri: String, router: Option[play.api.routing.Router]) Action Not Found

Action Not Found

For request '@method @uri'

@router match { case Some(routes) => {

These routes have been tried, in this order:

@routes.documentation.zipWithIndex.map { r =>
@(r._2 + 1)@r._1._1@r._1._2@r._1._3
}
} case None => {

No router defined.

} }