Re: Dynamic App Creation

2009-07-07 Thread Richard Shebora
I ran across this django app and it seems to be what you want... I don't have any experience with it except to try the demo which seems to work as "advertised". http://projects.nickblundell.org.uk/wikidbase Thanks, Richard Shebora -

Re: Dynamic App Creation

2009-07-07 Thread Andrew Fong
Generally speaking, dynamically altering the DB schema is difficult and dangerous. SQL databases are not spreadsheets -- that is, you shouldn't be frequently adding or removing columns to them. It makes optimization difficult and it's very likely you'll accidentally lose data in the process. AFAIK

Dynamic App Creation

2009-07-07 Thread Darren Mansell
Hello. I'm looking into making a Django app that allows you to create Django models. The idea is that you should be able to add fields and user workflows using a web page that then creates a model, view, template and syncs the DB. Users can then access these newly created apps separately. An exam