vote up 0 vote down star

What frameworks are targeted specifically at building so-called "CRUD Admin UIs" (basically, a set of screens for editing related SQL tables), whether Web Apps or Thick Clients.

The ones I know of:

  • ASP.NET DynamicData
  • Django Admin (from Nick's answer below)

General purpose frameworks like Ruby-on-Rails and ASP.NET MVC don't count.

flag
Not answering because I haven't used it professionaly, but I believe scafolding on ruby on rails allows this with VERY few lines of code. – Marcelo Morales Oct 30 at 18:07
Asp.net Dynamic Data is too incomprehensible to me? Are you trying to understand it by reading The documentation, or have you watched the videos? The videos are simple enough that I was able to follow along and create a Dynamic Data site for an existing database while watching the videos. This was after I had tried learning about it by reading the documentation and given it up as a bad job. – David Stratton Oct 30 at 18:18

2 Answers

vote up 2 vote down check

http://devpicayune.com/pycon2008/django%5Fadmin.html

Once you have your models setup, Django's admin is a very powerful, easy-to-use, and extensible interface.

link|flag
thanks man, at least you replied! – zvolkov Nov 2 at 20:23
vote up 0 vote down

Based on those requirements; i'd have to say plain old ASP.NET GridViews bound to a SQLDataSource.

You'll never even need to open the code editor!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.