Re: Just learning about auth in django and getting error NoReverseMatch ; Exception Value: Reverse for 'password_reset_done' with arguments

2017-04-08 Thread ludovic coues
It's hard to tell what is wrong without the full traceback or thecode causing the exception. I would suggest to replace reverse("password_reset_done") with reverse("myapp:password_reset_done"). Might be as simple as that. 2017-04-07 19:55 GMT+02:00 Thames Khi : > My example is simple, I am happy

Just learning about auth in django and getting error NoReverseMatch ; Exception Value: Reverse for 'password_reset_done' with arguments

2017-04-07 Thread Thames Khi
My example is simple, I am happy to use the standard views and templates provided by Django. NoReverseMatch at /myapp/password/reset/ Reverse for 'password_reset_done' with arguments '()' and keyword arguments '{}' not found. 0 pattern(s) tried: [] Request Method: GET Request URL: http://192.

Re: about auth

2007-09-30 Thread Cat
Richard Thanks for that - I appreciate it Cat On Sep 29, 12:19 pm, r_f_d <[EMAIL PROTECTED]> wrote: > Cat, > I will be posting what I am doing within the next day or to for you. > -richard > > On Sep 27, 8:47 pm, Cat <[EMAIL PROTECTED]> wrote: > > > > > Richard > > > I am currently developing a

Re: about auth

2007-09-28 Thread r_f_d
Cat, I will be posting what I am doing within the next day or to for you. -richard On Sep 27, 8:47 pm, Cat <[EMAIL PROTECTED]> wrote: > Richard > > I am currently developing an interface that will need to use role > based row level permissions and would be greatful for anything that > you are wi

Re: about auth

2007-09-28 Thread random
If its a simple requirement, richard's foreign key solution is a good one. You can see this being used @ djangosnippets. Im working on a project which needs simple row based ownership for edit/delete use and this solution works well. On Sep 27, 5:54 pm, "Lic. José M. Rodriguez Bacallao" <[EMAIL P

Re: about auth

2007-09-27 Thread Cat
Richard I am currently developing an interface that will need to use role based row level permissions and would be greatful for anything that you are willing to share. Catriona On Sep 28, 8:53 am, Richard Dahl <[EMAIL PROTECTED]> wrote: > If you are interested, I would love to collaborate on so

Re: about auth

2007-09-27 Thread Richard Dahl
If you are interested, I would love to collaborate on some ideas of doing this. I have an role-based system working pretty well as of now, but it does not, as of yet integrate with the admin interface. If you have any interest I would be more than willing to share some of what I have come

Re: about auth

2007-09-27 Thread Lic. José M. Rodriguez Bacallao
I'll do that On 9/27/07, Richard Dahl <[EMAIL PROTECTED]> wrote: > > There is a row-level-permissions branch, but I do not believe it is > actively being developed at this time. I wrote my own role-based permission > system and integrated it into all of my models that require it. I have not > at

Re: about auth

2007-09-27 Thread Richard Dahl
There is a row-level-permissions branch, but I do not believe it is actively being developed at this time. I wrote my own role-based permission system and integrated it into all of my models that require it. I have not attempted to integrate the permission system into the admin interface though.

Re: about auth

2007-09-27 Thread Lic. José M. Rodriguez Bacallao
yes, I know I can do something like that but, how can I do it in the admin interface? On 9/27/07, Tim Chase <[EMAIL PROTECTED]> wrote: > > > > hi people, I got a little question, how can I make some users add news > > (model News), modify only news owned by him or even delete his news, not > > oth

Re: about auth

2007-09-27 Thread Tim Chase
> hi people, I got a little question, how can I make some users add news > (model News), modify only news owned by him or even delete his news, not > others users news, but only admins can publish all of them? http://www.djangoproject.com/documentation/authentication/#permissions The stock admin

Re: about auth

2007-09-27 Thread Alex Koshelev
You may write special admin interface or wait when low-level permission will be placed in django. On 27 сент, 16:54, "Lic. Jos M. Rodriguez Bacallao" <[EMAIL PROTECTED]> wrote: > hi people, I got a little question, how can I make some users add news > (model News), modify only news owned by him

about auth

2007-09-27 Thread Lic. José M. Rodriguez Bacallao
hi people, I got a little question, how can I make some users add news (model News), modify only news owned by him or even delete his news, not others users news, but only admins can publish all of them? -- Lic. José M. Rodriguez Bacallao Cupet