Re: How to protect a view with client ID and client secret in REST / oauth toolkit?

2015-07-07 Thread Daniel Grace
I guess there are more standard ways of protecting a view. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscr...@googlegroups.com. To post to

Re: Values from class to class

2015-07-07 Thread James Schneider
On Tue, Jul 7, 2015 at 4:31 PM, Carlos Andre wrote: > I want copy some values to other fields in other table! > That's fine, although I would only recommend doing so if the qtdade in Person and 'value' field in Contact can contain different data in some scenario. You will

Re: Values from class to class

2015-07-07 Thread Carlos Andre
I want copy some values to other fields in other table! 2015-07-07 19:34 GMT-03:00 Carlos Andre : > i trying use thats solutions, in real yet continuos the problem. > The value, when are to use in other class, return to defaut value without > get the value who i send in the

Re: Values from class to class

2015-07-07 Thread Carlos Andre
i trying use thats solutions, in real yet continuos the problem. The value, when are to use in other class, return to defaut value without get the value who i send in the field. 2015-07-07 15:42 GMT-03:00 James Schneider : > On Tue, Jul 7, 2015 at 10:59 AM, Carlos Andre

Re: Values from class to class

2015-07-07 Thread James Schneider
On Tue, Jul 7, 2015 at 10:59 AM, Carlos Andre wrote: > example : I have two classes, respectively person contact. > I want to contact class has , in its attributes , values worked coming from > class person , such as name, pass in person , and size of the contact name > in the

Re: Values from class to class

2015-07-07 Thread Carlos Andre
example : I have two classes, respectively person contact. I want to contact class has , in its attributes , values ​​worked coming from class person , such as name, pass in person , and size of the contact name in the class. I did something like this : from django.db import models class person (

Re: Allauth: Howto registrate User with also saving data UserProfile fields

2015-07-07 Thread Marco Neumann
Hi All, For those collegue beginners who also where searching. :-) In my search of the sollution i found this: http://www.tangowithdjango.com/book17/chapters/login.html Works great. Greetings marco Op dinsdag 7 juli 2015 18:17:03

Re: ANN: django-admin-tools 0.6.0 released

2015-07-07 Thread Leandro Zanuz
Hi, great news! >From django-admin-tools 0.5.2 version to 0.6.0 had database changes or we need execute migrate with --fake option? By. 2015-07-07 14:19 GMT-03:00 David Jean Louis : > Hello, > > We are happy to announce the availability of the version 0.6.0 of >

Re: Búsquedas en una aplicacion

2015-07-07 Thread Luis Zárate
¿Que tipo de búsquedas desea hacer? Si son consultas en la base de datos puede usar el ORM de django para construir la consulta adecuada https://docs.djangoproject.com/en/1.8/topics/db/queries/ Si lo que busca es hacer un buscador para contenido de una página (blog, web page) entonces puede

ANN: django-admin-tools 0.6.0 released

2015-07-07 Thread David Jean Louis
Hello, We are happy to announce the availability of the version 0.6.0 of django-admin-tools: https://pypi.python.org/pypi/django-admin-tools/0.6.0 Django-admin-tools is a collection of extensions/tools for the default django administration interface, it includes: * a full featured and

Allauth: Howto registrate User with also saving data UserProfile fields

2015-07-07 Thread Marco Neumann
Hi all, I would like to make a registration form with the User SignUp form and extra UserProfile fields. So after saving the user is created and the data is saved in the UserProfile model. Can someone point me in the right direction. Thanks in advacend. Greetings Marco neumann -- You

Re: Push notifications in Django

2015-07-07 Thread Maksim Sokolski
Stop. Sorry I think about notifications to web client from web server in event driven behaviour. -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: Push notifications in Django

2015-07-07 Thread Ajay M
It is possible. You can send push notifications in django, using django-pushnotifications app. On Sunday, June 28, 2015 at 9:21:36 AM UTC+5:30, harsh.rathore14 wrote: > > I am Rails developer and new to Django. I want to build an Webapp which > will have push notification on comments, mentions

Re: Installing Django and Python 3.4 on a freshly registered Debian VPS

2015-07-07 Thread Linux4Bene
Op Sat, 04 Jul 2015 19:39:00 +0200, schreef Andreas Kuhne: > Hi, > > Just searching the net I found: > http://www.extellisys.com/articles/python-on-debian-wheezy . It has > information about how to install python 3.4 on debian. However I haven't > used Debian myself (we use ubuntu on our

Re: Models and relationships

2015-07-07 Thread Rafael E. Ferrero
Nice!! Chris good work !! -- Rafael E. Ferrero 2015-07-06 20:15 GMT-03:00 Chris Strasser : > WOO HOO !.. success ... thanks everyone... > just needed a nudge in the right direction I will tackle the > templates tomorrow and see where that takes me. > > On Mon, Jul

Re: Admin List Per Page Dropdown UI

2015-07-07 Thread Dean Christian Armada
This is not what I meant.. This will just set once the admin is loaded. What I want is I can manipulate the number records shown within the interface On Tuesday, July 7, 2015 at 7:34:23 PM UTC+8, larry@gmail.com wrote: > > On Tue, Jul 7, 2015 at 7:12 AM, Dean Christian Armada >

Re: Admin List Per Page Dropdown UI

2015-07-07 Thread Larry Martell
On Tue, Jul 7, 2015 at 7:12 AM, Dean Christian Armada wrote: > Hi Everyone, > > Is there an available option in the UI of Django Admin to manually select > how many records to be shown per page?

Admin List Per Page Dropdown UI

2015-07-07 Thread Dean Christian Armada
Hi Everyone, Is there an available option in the UI of Django Admin to manually select how many records to be shown per page? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it,

Django JQuery AJAX submit form POST request refreshes the page

2015-07-07 Thread Ankit Agrawal
Hi everyone, I have a login form for which I want the client to send AJAX POST request as below with error handling. In case of validation/authentication errors, I don't the page to be reloaded or refreshed to the url corresponding to POST request Handler(/users/login/) with the JSON

Re: Push notifications in Django

2015-07-07 Thread Leon Han
EventSource+StreamingHttpResponse ? I am not sure. 在 2015年6月28日星期日 UTC+8上午11:51:36,harsh.rathore14写道: > > I am Rails developer and new to Django. I want to build an Webapp which > will have push notification on comments, mentions etc. Is it possible in > Django or I should move to node.js >

Re: Values from class to class

2015-07-07 Thread James Schneider
Can you give a simple example or analogy of what you are trying to do? -James On Jul 6, 2015 5:29 PM, "Carlos Andre" wrote: > Hello to all , I need to solve a problem. I have two classes of which have to > use , in the second class, the first coming values. How to do this?