Authentication using email in Django 1.1

2010-04-17 Thread Marconi
Hello, I've been googling and I can't find a solution to use email instead of username when logging-in that will work in Django 1.1 and should also work on the admin side. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, se

how to customizing fields in django’s comment app?

2010-04-20 Thread Marconi
How can I customize the django builtin comment app so that the fields url, email will be ignored and automatically populate the name with the user's username since I'm only allowing comments from authenticated users? -- You received this message because you are subscribed to the Google Groups "D

coffin error

2010-04-14 Thread Marconi
I'm trying to use Jinja2 as my template in Django 1.1 and I found out about http://github.com/dcramer/coffin . But when I try importing: from coffin.shortcuts import render_to_response I get the following error: http://python.pastebin.com/hwCWGRFF Any idea whats happening? -- You received this

Re: coffin error

2010-04-14 Thread Marconi
I see. I think I'd rather use the lower version of coffin for now. Thanks! On Apr 14, 8:09 pm, Karen Tracey wrote: > On Wed, Apr 14, 2010 at 7:38 AM, Marconi wrote: > > I'm trying to use Jinja2 as my template in Django 1.1 and I found out > > abouthttp://github.com/dcr

Re: log out a user when user closes tab or browser

2019-03-21 Thread Marconi Moreto Jr.
How about on `window.onbeforeunload` you delete the session id from the cookie, on next visit no session id to send so should be considered logged-out. On Thu, Mar 21, 2019, at 10:17 PM, KadirCEBEL wrote: > You can use jquery. you can write a function like logout (in the view) > after that when b