Re: Django 1.9.5 Cookies. how can I set and display them?

2016-05-05 Thread Kristofer Pettijohn
I recommend looking at the Django documentation. You set cookies via request.session.set(). And you typically do not modify the response value returned from HttpResponse() unless you are doing more advanced things. For example (straight from the docs): def post_comment(request, new_comment):

Re: Django forms validation

2016-05-05 Thread Lekan Wahab
Hello Babatunde, Thank you for answering my question. I have actually done that. But Django throws and error whenever I I instantiate form/for_class to ContactForm(request. POST). It says it's expected only a single argumen. but two was provided. On 05 May 2016 10:36 PM, "Babatunde Akinyanmi"

Re: Fixtures won't load twice in same testcase

2016-05-05 Thread Mike Dewhirst
On 6/05/2016 8:42 AM, Rich Rauenzahn wrote: I've been tracing into django core code, and it looks to me that I have a case where the fixture has a auth.User(username=rich) with a pk=1 in the fixture. Â But sometimes as the User fixture with pk=1 is being added (updated?) through

Re: Fixtures won't load twice in same testcase

2016-05-05 Thread Rich Rauenzahn
I've been tracing into django core code, and it looks to me that I have a case where the fixture has a auth.User(username=rich) with a pk=1 in the fixture. But sometimes as the User fixture with pk=1 is being added (updated?) through Model._save_table(), the same User with pk=5 is already in

Re: Django forms validation

2016-05-05 Thread Babatunde Akinyanmi
Hello Lekan. I have responded inline but my answer might not be a complete fix. On May 5, 2016 4:56 PM, "Lekan Wahab" wrote: > > Hello, > Please, i have a model form in forms.py which am trying to validate and update my database with. However, for some reason the form is

Connecting to an established MS SQL database

2016-05-05 Thread David McDonald
Hello, I am very new to Django and have an idea for an application at work. We have an already established MS SQL database, that I have a read only user for. Is there any way I can connect to this database and retrieve data from it, once I have retrieved it, I would like to connect to another

Brevity on Kickstarter - Check it out!

2016-05-05 Thread Val Neekman
Hi folks, I created Brevity for my own use and thought about throwing it at *Kickstarter* to see if it sticks; and to see if anyone else has a need for it. http://kck.st/21jLaTe *Heads up: * While ~70% of Brevity is already open source software, making it 100% open source is only possible

Re: Ubuntu 16.04 Django 1.9.6 & MySql

2016-05-05 Thread Ezequiel Bertti
Take a look here: https://dev.mysql.com/downloads/connector/python/ On Thu, May 5, 2016 at 3:03 PM, Mauro Miotello wrote: > I cannot install mysqlclient on this env > many errors > > is there a right path ? > > thanks > > MM > > -- > You received this message because

Ubuntu 16.04 Django 1.9.6 & MySql

2016-05-05 Thread Mauro Miotello
I cannot install mysqlclient on this env many errors is there a right path ? thanks MM -- 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 forms validation

2016-05-05 Thread Lekan Wahab
Hello, Please, i have a model form in forms.py which am trying to validate and update my database with. However, for some reason the form is not being validated. I have tried everything i could think of. It just reloads the page. views.py > from django.shortcuts import render > from

Django 1.9.5 Cookies. how can I set and display them?

2016-05-05 Thread shaukat ali
Hey Guys I have a website which do some calculations in different ways. It will use COOKIES. So how can I set and display the COOKIES? So can you guys guide me. *My code id:* response = HttpResponse('true') DEFAULT_DATE_FORMAT = 'MM/dd/' # Here I am setting my cookies

Re: Django Multiple User Profiles Best Practices

2016-05-05 Thread Sudhanshu Shekhar
Hey, Thanks for the reply. The book was released in March 2015 and I am sure the authors would've known about the custom user models. It has some very good suggestions (For intermediate django devs like me at least), though yeah, this abstract model inheritance idea did seem a little troubling to

Re: What's the best way to auto convert a model field values before it is rendered?

2016-05-05 Thread Derek
The '_get_fahrenheit()' method will also need to handle the case of a null entry for the 'celcius' field. On Tuesday, 3 May 2016 16:34:20 UTC+2, Derek wrote: > > I would add it as a custom model method - see: > https://docs.djangoproject.com/es/1.9/topics/db/models/#model-methods > > So, for

Regarding session_key validation

2016-05-05 Thread Samarjeet Singh
Right now what django is doing is :- 1. It checks the session id is correct or not by checking the user associated with the session id 2. If the session id is not present it send the user as anonomous and because of which it redirects one to the login page . 3. But my concern is that if i want