On Wed, 2007-06-13 at 20:54 +0000, eXt wrote: > I know that, but generic view needs a template created by hand (or I > missed something). I want to automatically generate some html code (as > new forms do).
I think your expectations are a little different than what Django provides. Django gives you a framework for hndling the pieces of a project that can be automated most of the time. Laying out the information on a page is not one of those pieces, since it's very particular to each project. SThere isn't anything in core that takes a model and produces any sort of HTML static page for it. It would be simple enough for you to write one for your own purposes if you wanted. Have a look at how, say, django.newsforms.utils.form_for_model() iterates over the fields and use that to generate a template string. The newforms portion is not appropriate for this though, since forms are for input, not static data presentation. You could emulate the result use the "attrs" parameter to various widgets, but that would require as much (or more) hand-coding as either writing a template or a simple utility method. Regards, Malcolm --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---