Re: Design a model for a Blog

2007-09-24 Thread Alex Koshelev
No, you must set unique=True argument manual for slug field On 24 сент, 23:39, Florian Lindner <[EMAIL PROTECTED]> wrote: > Am Sonntag, 23. September 2007 schrieb Alex Koshelev: > > > Slug is very good when you want to create "fine" urls. You can convert > > (using prepopulate_from param) your ti

Re: Design a model for a Blog

2007-09-24 Thread Florian Lindner
Am Sonntag, 23. September 2007 schrieb Alex Koshelev: > Slug is very good when you want to create "fine" urls. You can convert > (using prepopulate_from param) your title field of entry to slug and > use it for entry's permalink. > But of course you can use entry's id(integer value) for url mappin

Re: Design a model for a Blog

2007-09-23 Thread Alex Koshelev
Slug is very good when you want to create "fine" urls. You can convert (using prepopulate_from param) your title field of entry to slug and use it for entry's permalink. But of course you can use entry's id(integer value) for url mapping On 23 сент, 17:12, Florian Lindner <[EMAIL PROTECTED]> wrot

Design a model for a Blog

2007-09-23 Thread Florian Lindner
Hello, I am about to develop a blogging application for my site (it's also a learning Django app, so please don't point me to existing projects ;-) Since I do want to omit to change my entire app due to mistakes I had made while designing the model I would like to discuss my concept here before