ex_admin
ex_admin copied to clipboard
ExAdmin is an auto administration package for Elixir and the Phoenix Framework
Hey Folks, ex_admin as is right now seems to have huge technical debt, missing features and security issues. Are there any other Elixir/Phoenix alternatives for an admin interface?
Failed to use "phoenix_ecto" (version 4.0.0) because deps/ex_admin/mix.exs requires ~> 3.2 mix.lock specifies 4.0.0
- Ecto 3 compatibility - most of the changes deal with using core date time types instead of the deprecated ecto ones. - Replace unsafe HTML strings with `Phoenix.HTML.raw` -...
https://github.com/smpallen99/ex_admin/issues/457 I have exectly the same problem, is it possible to solve or give workaround tips?
I have something like this: ```elixir defmodule MyApp.Order do schema "orders" do belongs_to :user end end defmodule MyApp.User do schema "users" do has_many :orders end end ``` When I load...
If a model has a `belongs_to` relationship to another model that is not registered in `config.exs`, it fails with the following error: ``` [error] %UndefinedFunctionError{arity: 0, function: :__struct__, message: nil,...
We're trying to build a markdown editing field and when we add a heading using `#` the text area appears empty after saving then going back to edit it. We've...
It looks like it is not an easy upgrade to 1.4 within an umbrella app. ``` Failed to use "phoenix_ecto" (version 4.0.0) because `phoenix_ecto` deps/ex_admin/mix.exs requires ~> 3.2 Failed to...
…tically). Fixes #451
Looks like a good project... Would love to try it in a project if its still maintained.