cannery/lib/lokal_web/views/error_view.ex

17 lines
478 B
Elixir
Raw Normal View History

2021-03-11 21:12:55 -05:00
defmodule LokalWeb.ErrorView do
use LokalWeb, :view
2022-02-25 21:53:04 -05:00
import LokalWeb.Components.Topbar
2022-05-05 21:47:22 -04:00
alias LokalWeb.{Endpoint, HomeLive}
2021-03-11 21:12:55 -05:00
2022-02-25 21:53:04 -05:00
def template_not_found(error_path, _assigns) do
error_string =
case error_path do
"404.html" -> dgettext("errors", "Not found")
"401.html" -> dgettext("errors", "Unauthorized")
2023-02-04 17:28:53 -05:00
_other_path -> dgettext("errors", "Internal Server Error")
2022-02-25 21:53:04 -05:00
end
2021-03-11 21:12:55 -05:00
2022-02-25 21:53:04 -05:00
render("error.html", %{error_string: error_string})
2021-03-11 21:12:55 -05:00
end
end