Re: ContentTypes usage

2006-07-20 Thread Uros Trebec
Jacob Kaplan-Moss wrote: > On Jul 19, 2006, at 7:49 AM, Uros Trebec wrote: > > Does anyone know how to use this thing? > > I do :) That's good to hear! :) > But you're really going to need to give me more information about > what you're trying to do in order for me to help. Remember:

Re: ContentTypes usage

2006-07-20 Thread Ian Holsman
What are you trying to figure out exactly?Content Types are basically meta data describing your application's models.It gives you a database wide method of uniquely identifying a object.this allows you to do stuff like:have a global redirect mechanism  /r//allow you to add tags or comments to any

Re: ContentTypes usage

2006-07-20 Thread Uros Trebec
Aidas Bendoraitis wrote: > You can learn about ContentTypes from > http://www.djangoproject.com/documentation/models/generic_relations/ > and also from the code of django.contrib.comments Thank you very much for this one! I'll try to figure it out. regards, Uros

Re: ContentTypes usage

2006-07-19 Thread Jacob Kaplan-Moss
On Jul 19, 2006, at 7:49 AM, Uros Trebec wrote: > Does anyone know how to use this thing? I do :) But you're really going to need to give me more information about what you're trying to do in order for me to help. Remember: specific questions get the best answers. Jacob

Re: ContentTypes usage

2006-07-19 Thread Aidas Bendoraitis
You can learn about ContentTypes from http://www.djangoproject.com/documentation/models/generic_relations/ and also from the code of django.contrib.comments Good luck! Aidas Bendoraitis [aka Archatas] On 7/19/06, Uros Trebec <[EMAIL PROTECTED]> wrote: > > Hi everyone! > > I'm trying to figure

ContentTypes usage

2006-07-19 Thread Uros Trebec
Hi everyone! I'm trying to figure out how to use django.contrib.contenttypes. There is no official documentation, code is not documented enough and I could only find this [0] blog post from which I can't get anything useful from. Does anyone know how to use this thing? [0]