tags:

views:

208

answers:

1

Im moving from django to pylons, is there an admin app?

+3  A: 

Not out of the box, but there are few options you can use. See Forms - Pylons Cookbook - PythonWeb for the options:

  • formalchemy - the only one I used personally, and there is even an extension module for pylons documented formalchemy.ext.pylons – Pylons extensions, which I recommend to try out.
  • ToscaWidgets
  • DBSprockets
  • even Django's newforms (the link to it on the site above is broken, but google for it)
van