maury wrote:
> Updates:
>
> I found some documentation and I added a code to urls.py like this :
>
> (r'^poll/add$', create_update.create_object, {'model' : Poll}),
>
> and the problem is that I have to write a template (I know where the
> file should be and how it should be named from the error message I
> got) and I don't know how to write it, yet. I have no special needs,
> is it possible to let django supply one default template constructed
> from the model definition ?
>
>   
Django has what it calls "generic views" : see

  http://docs.djangoproject.com/en/dev/ref/generic-views/

whose purpose is to avoid the need for programming in Python, but even
they sometimes expect some sort of a template. Maybe what you are
looking for is list/detail generic views?

If you *do* have to start tangling with templates don't worry about it.
If you can handle Python then your major problem is going to be keeping
things simple enough to be representable as a template: the language is
deliberately designed to be *not* a programming language, so it's more
natural for content designers than Python programmers.

regards
 Steve


--~--~---------~--~----~------------~-------~--~----~
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