Re: Django setup with elsatic beanstalk

2014-07-11 Thread Rob
gmail.com> writes: > > > I'm having a similar problem - I don't see errors from the EB console - but django is not loaded I still get the standard AWS EB page.I have tried editing settings.py and app.config according to this tutorial:http://docs.aws.amazon.com/elasticbeanstalk

Re: Django Database Switching Issue

2014-07-11 Thread Thomas Lockhart
On 7/11/14 11:30 AM, G Z wrote: Thomas, I have no cache setup, Django is all set to default right now there is no local_settings file I have actually changed every settings file that exist for django to match my production db yet still the wrong data. Well, you will have to give more details

Re: Django Database Switching Issue

2014-07-11 Thread G Z
Thomas, I have no cache setup, Django is all set to default right now there is no local_settings file I have actually changed every settings file that exist for django to match my production db yet still the wrong data. On Friday, July 11, 2014 10:30:23 AM UTC-6, Thomas wrote: > > On 7/11/14

The green plus sign for plain old input text

2014-07-11 Thread Aeh. ABID
How can I append the green plus sign (like in the dropdown widget) to an input text so I can select item from poupup -- 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

Re: Tests in 1.6

2014-07-11 Thread Larry Martell
On Fri, Jul 11, 2014 at 11:16 AM, Larry Martell wrote: > On Fri, Jul 11, 2014 at 10:44 AM, Russell Keith-Magee > wrote: >> Hi Larry >> >> On Fri, Jul 11, 2014 at 9:37 PM, Larry Martell >> wrote: >>> >>> On Thu, Jul 10,

Re: Django Database Switching Issue

2014-07-11 Thread Thomas Lockhart
On 7/11/14 9:27 AM, G Z wrote: So I tracked down an issue, whenever I change my database from development to production which have the same exact schema it still uses the data from development although my settings.py file is set to the production database and it even swtiches the user I have to

Django Database Switching Issue

2014-07-11 Thread G Z
So I tracked down an issue, whenever I change my database from development to production which have the same exact schema it still uses the data from development although my settings.py file is set to the production database and it even swtiches the user I have to log in with to the one

Re: Tests in 1.6

2014-07-11 Thread Larry Martell
On Fri, Jul 11, 2014 at 10:44 AM, Russell Keith-Magee wrote: > Hi Larry > > On Fri, Jul 11, 2014 at 9:37 PM, Larry Martell > wrote: >> >> On Thu, Jul 10, 2014 at 8:35 PM, Russell Keith-Magee >> wrote: >> >> I appreciate

Re: Tests in 1.6

2014-07-11 Thread Russell Keith-Magee
Hi Larry On Fri, Jul 11, 2014 at 9:37 PM, Larry Martell wrote: > On Thu, Jul 10, 2014 at 8:35 PM, Russell Keith-Magee > wrote: > > I appreciate the detailed reply, and I think I understand all this, > but I still cannot get my tests to run.

Re: Tests in 1.6

2014-07-11 Thread Larry Martell
On Thu, Jul 10, 2014 at 8:35 PM, Russell Keith-Magee wrote: > > On Fri, Jul 11, 2014 at 3:34 AM, Larry Martell > wrote: >> >> I am trying to upgrade a site to 1.6. I read the change notes about >> the tests now having to start with test. >> >> My

Re: django beginner

2014-07-11 Thread ngangsia akumbo
i have a problem from django.db import models # Create your models here. class Post(models.Model): headline = models.CharField(max_length=200) slug = models.SlugField(max_length=60) pub_date = models.DateField() photo = models.ImageField(upload_to='static/blog',

Re: RuntimeWarning: DateTimeField Task.start received a naive datetime (2014-07-21 07:39:14) while time zone support is active. RuntimeWarning)

2014-07-11 Thread Mike Dewhirst
On 11/07/2014 1:44 PM, Neto wrote: Hi guys, I need a help here: *settings.py* TIME_ZONE = 'America/Sao_Paulo' *view.py:* task = Task.objects.get(id=id) task.start = request.GET['task_start'] tarefa.save() Terminal: RuntimeWarning: DateTimeField Task.start