Re: A convenient way to include images in a blog entry

2007-07-25 Thread Kai Kuehne
Hi, On 7/26/07, Patrick Anderson <[EMAIL PROTECTED]> wrote: > Make the m2m relation optional using (null = True, blank = True) in your > model This is the case. Greetings Kai --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Re: A convenient way to include images in a blog entry

2007-07-25 Thread Patrick Anderson
On Thu, 26 Jul 2007 00:11:59 +0200, Kai Kuehne wrote: > Unfortunately I cannot keep the relation between Entry and Image because > I get an weird error (see #4633) if the m2m field is None. > > So.. is there another way to just show a list of models on an edit page > of another model without

Re: A convenient way to include images in a blog entry

2007-07-25 Thread Kai Kuehne
Unfortunately I cannot keep the relation between Entry and Image because I get an weird error (see #4633) if the m2m field is None. So.. is there another way to just show a list of models on an edit page of another model without having to do a relation between them? Thanks in advance. Kai

Re: A convenient way to include images in a blog entry

2007-07-25 Thread Kai Kuehne
Hi Justin, On 7/25/07, Justin Lilly <[EMAIL PROTECTED]> wrote: > I'm with Baxter. Tag your images and then just include an image of tag X > along with the story with a similar tag. > > Not sure how this might interact with specific images going with specific > articles, but its not a bad

Re: A convenient way to include images in a blog entry

2007-07-25 Thread Justin Lilly
I'm with Baxter. Tag your images and then just include an image of tag X along with the story with a similar tag. Not sure how this might interact with specific images going with specific articles, but its not a bad generalized solution, I think. On 7/25/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]>

Re: A convenient way to include images in a blog entry

2007-07-25 Thread [EMAIL PROTECTED]
I said to hell with it and put all the related images in a slideshow alongside the entry. On Jul 25, 11:05 am, "Kai Kuehne" <[EMAIL PROTECTED]> wrote: > Hi Patrick, > > On 7/25/07, Patrick <[EMAIL PROTECTED]> wrote: > > > What I did in one of my projects is to use a JS editor (at this point I >

Re: A convenient way to include images in a blog entry

2007-07-25 Thread Kai Kuehne
Hi Patrick, On 7/25/07, Patrick <[EMAIL PROTECTED]> wrote: > What I did in one of my projects is to use a JS editor (at this point I > opted for WYM Editor), which has a function to insert image tags if you > give it a URL. I think that is the most-widely used approach. I don't like such

Re: A convenient way to include images in a blog entry

2007-07-25 Thread Patrick
On Wed, 25 Jul 2007 01:43:53 +0200, Kai Kuehne wrote: > Hi list! > In the last past hours I've been thinking about how to include images > into my django blog application. > > At first, I added a new field to my "Entry" django model and named it > "image". This worked but I decided that (maybe)

A convenient way to include images in a blog entry

2007-07-24 Thread Kai Kuehne
Hi list! In the last past hours I've been thinking about how to include images into my django blog application. At first, I added a new field to my "Entry" django model and named it "image". This worked but I decided that (maybe) I want to include more than one image in a blog entry. So I