On Mon, Feb 25, 2008 at 6:24 AM, bcurtu <[EMAIL PROTECTED]> wrote:
>  Is there any kind of utility for automatic scaffolding?

By preference, Django development does not involve generation of
static files of code on disk; instead, functionality like "show a form
to create an object", "show a list of objects", etc. is encapsulated
in components which work based on runtime parameters, so that they can
be reused many times simply by passing in different sets of arguments.

You probably want to walk through the tutorial to get a feel for this
(it covers some basic uses of generic views, which can handle
creation, editing and display of objects in your database), and then
look at the detailed documentation for generic views. Also, the admin
application (which is useful both as a production administration
interface, and as a quick way to get a data-entry interface running)
and the bundled databrowse application (which can introspect your
models to show browseable interfaces) may be of interest to you.


-- 
"Bureaucrat Conrad, you are technically correct -- the best kind of correct."

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to