Re: Flash Message template tag

2007-07-22 Thread rtconner
Are you talking about the Authentication message system found here? http://www.djangoproject.com/documentation/authentication/#messages One of the features of flash messages in other frameworks I've used .. is that as soon as the message gets rendered it is deleted from the session. It's been

Re: Flash Message template tag

2007-07-16 Thread James Bennett
On 7/15/07, rtconner <[EMAIL PROTECTED]> wrote: > So one of the (very few) things I had not been happy with regarding > Django is its flash message handling. So I wrote something that would > make me happy. Its just a template tag add-on. Since so far Django has > been so great to me, I wanted to

Re: Flash Message template tag

2007-07-15 Thread James Bennett
On 7/15/07, rtconner <[EMAIL PROTECTED]> wrote: > Yeah I could not get http://www.djangosnippets.org to work. Every time > I tried to add a snippet I got an error. Try again; I just kicked the server and things seem OK now. -- "Bureaucrat Conrad, you are technically correct -- the best kind of

Re: Flash Message template tag

2007-07-15 Thread rtconner
Yeah I could not get http://www.djangosnippets.org to work. Every time I tried to add a snippet I got an error. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send

Re: Flash Message template tag

2007-07-15 Thread rtconner
I'll just quote myself on that one.. "So I don't know where to post this" Nice site, yeah I'll post it on there. On Jul 15, 1:32 pm, Christian Joergensen <[EMAIL PROTECTED]> wrote: > rtconner wrote: > > Oh yeah I also wrote a FlashMsgMiddleware that makes this even easier. > > It's not needed

Re: Flash Message template tag

2007-07-15 Thread Christian Joergensen
rtconner wrote: > Oh yeah I also wrote a FlashMsgMiddleware that makes this even easier. > It's not needed at all, but it'll save you a line of code here and > there. I can't post it if anyone wants it. Why not just post it to http://www.djangosnippets.org ? :) -- Christian Joergensen | Linux,

Re: Flash Message template tag

2007-07-15 Thread rtconner
Oh yeah I also wrote a FlashMsgMiddleware that makes this even easier. It's not needed at all, but it'll save you a line of code here and there. I can't post it if anyone wants it. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

Flash Message template tag

2007-07-15 Thread rtconner
Hey Djangonauts, So one of the (very few) things I had not been happy with regarding Django is its flash message handling. So I wrote something that would make me happy. Its just a template tag add-on. Since so far Django has been so great to me, I wanted to give a little bit back. So I don't