Re: Row-specific user permissions

2009-07-19 Thread nkulmati
Thank you Alex, this is an excellent article. On Jul 18, 5:55 pm, Alex Gaynor <alex.gay...@gmail.com> wrote: > On Sat, Jul 18, 2009 at 4:23 PM, nkulmati<kulmatits...@gmail.com> wrote: > > > Hi Django users, > > > It's been a while since I used Django, so I ne

Row-specific user permissions

2009-07-18 Thread nkulmati
Hi Django users, It's been a while since I used Django, so I need an update on the following question. Has anyone found a generic solution to django-admin's huge flaw - specifically, not being able to limit view/edit/delete activities based on object-specific (not model-specific)

Re: Usaing quotations in comments - please share

2008-11-10 Thread nkulmati
Wow, Thanks! And what do you use "fix_ampersands" for? On Nov 10, 1:02 am, Dmitry Dzhus <[EMAIL PROTECTED]> wrote: > nkulmati wrote: > > So here's a task which I do not yet know how to solve with django. > > > When users post comments and wish to include a quote

Re: Help! Login() exceeds maximum recursion depth!

2008-11-09 Thread nkulmati
Please ignore this thread - I found the problem! Alex I got what you meant, thanks! --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to

Re: Help! Login() exceeds maximum recursion depth!

2008-11-09 Thread nkulmati
The function comes from from django.contrib.auth import authenticate, login I'm just doing what this page provides: http://docs.djangoproject.com/en/dev/topics/auth/#django.contrib.auth.login --~--~-~--~~~---~--~~ You received this message because you are

Usaing quotations in comments - please share

2008-11-09 Thread nkulmati
So here's a task which I do not yet know how to solve with django. When users post comments and wish to include a quote of another user, I would like them to use: > quoted phrase 1 reply to phrase 1 > quoted phrase 2 reply to phase 2 (similar to an e-mail conversation) No HTML allowed in

Help! Login() exceeds maximum recursion depth!

2008-11-09 Thread nkulmati
Hi guys! Ok this really pisses me off, because I am using the code directly from the documentation: def my_view(request): username = request.POST['username'] password = request.POST['password'] user = authenticate(username=username, password=password) if user is not None:

Password Field Form

2008-11-02 Thread nkulmati
How come this page: http://docs.djangoproject.com/en/dev/ref/forms/fields/#module-django.forms.fields does not contain information about password fields? How do I create and use a password form field then? Clearly, django has support for password form fields, since they are used in the standard

How to modify field error wording ?

2008-10-31 Thread nkulmati
Hi all: How to modify field error wording ? Please do not send me to the page "Form-subclasses-and-modifying-field- errors" in the docs. All I need is to override the error messages, NOT the validation system. That page does not address this need for some reason! I don't want to start