Re: XIFF Developers

2008-08-26 Thread leahy_rich
http://groups.google.com/group/xiff-users On Aug 26, 11:14 am, [EMAIL PROTECTED] wrote: > Hey guys im a django developer and have an interest in the new XIFF > flash api so i have just created a new google group for XIFF > developers or anyone / django developers like me interested in XIFF / > XM

XIFF Developers

2008-08-26 Thread leahy_rich
Hey guys im a django developer and have an interest in the new XIFF flash api so i have just created a new google group for XIFF developers or anyone / django developers like me interested in XIFF / XMPP would be great for everyone involved or interested in this to join. Its extremely small at the

template & forloop help

2008-02-06 Thread leahy_rich
Hi guys, Trying to figure out how to use the forloop.counter in a template but to add it to a field to increment the name of the field each time. for example.. in my template i will have this {% for div in divs %} {{ form.name }} {% endfor %} so this will result in ... name name name etc.. I

ordering help

2008-01-30 Thread leahy_rich
Hi Guys I have a database that stores unit numbers in postgresql eg 3B , 2, 5 , 4C, 1 etc.. so it had to be string type for the letters but now i want to order them in ascending order on the template eg. 1, 2, 3b etc.. The problem is in my view function def summary(request): unit_list = U

template orderby help

2008-01-28 Thread leahy_rich
Hi Guys, Im trying to do an orderby on my template its not working correctly below is the template code. Im posting the listing to the enquiry form and it is getting the listing correctly no keyword or date filter is given so they remain blank. ID The &listing={{ request.GET.listing }} is the p

newforms filter with models help

2008-01-09 Thread leahy_rich
Hi can anyone help me Im trying to do a filter on my form to filter an email my code is a s follows any help on why this is not working will be greatly appreciated class Details(models.Model): name = models.CharField(maxlength=80) surname = models.CharField(maxlength=80)

Re: request.user -> logout

2007-11-09 Thread leahy_rich
I use the logout_then_login syntax in the urls.py Use this if you want to redirect the user back t the login screen when they log out. On Nov 9, 9:38 am, Malcolm Tredinnick <[EMAIL PROTECTED]> wrote: > On Thu, 2007-11-08 at 23:30 -0800, globophobe wrote: > > This is probably a simple question, b