$ mix compile
Compiled lib/my_app.ex
Compiled web/router.ex
Compiled web/views/user_view.ex
Compiled lib/my_app/endpoint.ex
Compiled web/views/page_view.ex
== Compilation error on file web/views/record_view.ex ==
** (CompileError) web/templates/record/edit.html.eex:4: function record_path/3 undefined
(stdlib) lists.erl:1336: :lists.foreach/2
(stdlib) erl_eval.erl:657: :erl_eval.do_apply/6$ mix phoenix.routes
web_socket_path GET /phoenix Phoenix.Transports.WebSocket.upgrade/2
web_socket_path POST /phoenix Phoenix.Transports.WebSocket.upgrade/2
long_poller_path GET /phoenix/poll Phoenix.Transports.LongPoller.poll/2
long_poller_path POST /phoenix/poll Phoenix.Transports.LongPoller.publish/2
page_path GET / MyApp.PageController.index/2
user_path GET /users MyApp.UserController.index/2
user_path GET /users/:id/edit MyApp.UserController.edit/2
user_path GET /users/new MyApp.UserController.new/2
user_path GET /users/:id MyApp.UserController.show/2
user_path POST /users MyApp.UserController.create/2
user_path PATCH /users/:id MyApp.UserController.update/2
PUT /users/:id MyApp.UserController.update/2
user_path DELETE /users/:id MyApp.UserController.delete/2
user_document_path GET /users/:user_id/documents MyApp.DocumentController.index/2
user_document_path GET /users/:user_id/documents/:id/edit MyApp.DocumentController.edit/2
user_document_path GET /users/:user_id/documents/new MyApp.DocumentController.new/2
user_document_path GET /users/:user_id/documents/:id MyApp.DocumentController.show/2
user_document_path POST /users/:user_id/documents MyApp.DocumentController.create/2
user_document_path PATCH /users/:user_id/documents/:id MyApp.DocumentController.update/2
PUT /users/:user_id/documents/:id MyApp.DocumentController.update/2
user_document_path DELETE /users/:user_id/documents/:id MyApp.DocumentController.delete/2
user_document_record_path GET /users/:user_id/documents/:document_id/records MyApp.RecordController.index/2
user_document_record_path GET /users/:user_id/documents/:document_id/records/:id/edit MyApp.RecordController.edit/2
user_document_record_path GET /users/:user_id/documents/:document_id/records/new MyApp.RecordController.new/2
user_document_record_path GET /users/:user_id/documents/:document_id/records/:id MyApp.RecordController.show/2
user_document_record_path POST /users/:user_id/documents/:document_id/records MyApp.RecordController.create/2
user_document_record_path PATCH /users/:user_id/documents/:document_id/records/:id MyApp.RecordController.update/2
PUT /users/:user_id/documents/:document_id/records/:id MyApp.RecordController.update/2
user_document_record_path DELETE /users/:user_id/documents/:document_id/records/:id MyApp.RecordController.delete/2To view this discussion on the web visit https://groups.google.com/d/msgid/phoenix-talk/261d1545-47e0-4d1c-a2a1-55e4302f2221%40googlegroups.com.