Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Does Perl have something similar to the Django automatic administrator interface?

I was wondering if there's a glue module to link the likes of DBIx::Class, Mojo et al. together and automatically generate forms, schema etc.

like image 511
Spiros Avatar asked Oct 27 '12 15:10

Spiros


2 Answers

Catalyst has AutoCRUD which is pretty excellent.

like image 192
friedo Avatar answered Oct 07 '22 09:10

friedo


There is:

  • DBIx::Class::Schema::Loader - which generates your DBIC models - it can handle DB FK constraints to generate the relationships between them too, but I like to use it just for generating columns
  • HTML::FormHandler and HTML::FormHandler::Generator::DBIC that I like to use for form generation/handling

Do a duckduckgo search for perl CRUD and choose a solution from there if you want something fast.

like image 45
Tudor Constantin Avatar answered Oct 07 '22 09:10

Tudor Constantin