1
vote
0answers
29 views

Storing and processing timezone information in Django Datetime fields

I am designing a service which lists events happening around the world. The users can contribute to the lists as well. I'd designed it earlier for a particular place where timezone was same all across ...
2
votes
1answer
49 views

Django Timezone Handling with Postgres

I recently upgraded a Django project from 1.3 to 1.5 in order to start using the timezone handling. Because I am a moron, my Django timezone was set to "America/NewYork" instead of using UTC. Turning ...
0
votes
2answers
59 views

Django and Timezones: how to render aware datetime as a naive one in template (with pytz)

I have those models: class TimeZone(models.Model): name = models.CharField(max_length = 40, unique = True, editable = False) def tz(self): return pytz.timezone(str(self.name)) class ...
1
vote
1answer
30 views

Django: Set datetime in views to utc+1

I have checked around a bit, both here and Google, without finding an exact answer to what I'm looking for. I'm currently working on a Django-project and I seem to live in one of those areas where ...
0
votes
1answer
37 views

how to convert database dates to strings with timezones

I have the following line of code datetime.datetime.strftime(expire_date, "%m/%d/%Y %H:%M %p %Z") but it is not outputting the date with the timezone. How can I change it so that it does?
0
votes
1answer
71 views

Django: Naive datetime on query

I'm trying to retrieve all data between two dates (monday -> monday). Here's my code: some_day_last_week = datetime.datetime.now() - timedelta(days=7) monday_of_last_week = some_day_last_week ...
0
votes
1answer
42 views

Django How to find out if earlier than 7pm in a specific timezone

I'm new to Django/programming and am trying to write some code that would tell me if it is earlier than 7pm in a specific timezone (I would provide the timezone). I apologize if this type of question ...
0
votes
1answer
39 views

Can't make timezone datetime object to print the right time

I really have trouble grasping this with timezones. I have a calendar app with a model like this: class Events(models.Model): dtstart = models.DateTimeField('Start') ... def ...
0
votes
1answer
41 views

How to read timezone datetime objects

I have a timezone aware datetime object, which, if printed contains: 2013-03-04 18:00:00+01:00. But I always fail to understand how to read them. Does this refers to 19:00 local time or to 18:00 local ...
0
votes
2answers
54 views

Do I need timezone support in Django?

I am developing a Django application that is based around event information. My client is sending all date/time information in UTC and making the conversion to local time. These are then sent to the ...
0
votes
2answers
87 views

Django timezone localization not working as expected

I'm using Django 1.4.3 and Postgres 9.1.3. Here is my template where message.created_at is a python datetime object and it clearly tells me that the datetime object is stored in GMT as I can debug by ...
0
votes
2answers
58 views

Django: Timezone stored in MySQL DB is not correct

I have an application which is using 'Asia/Taipei' as its timezone in settings.py and using the auto_now=true on one of the datetimefield on models.py: --- settings.py --- TIME_ZONE = 'Asia/Taipei' ...
0
votes
1answer
166 views

Django - can not get a time function (timezone, datetime) to work properly, Getting ErrorName message: global name not defined

I'm a Django newbie, I am following a tutorial and I had to create two models shown below: import datetime from django.db import models from django.utils import timezone class Poll(models.Model): ...
0
votes
2answers
138 views

Python/Django: Need a ListBox/Dropdown with pytz common_timezones name each difference for UTC (offsets)

Need a ListBox/Dropdown with pytz common_timezones name each difference for UTC. <select style="cursor:pointer; min-width: 300px;" name="timezone"> {% for tz in timezones %} ...
1
vote
2answers
101 views

Handling per-object timezone settings in Django

I have a Django application in which a user can create an Activity, and then for an Activity create a number of Log entries. An Activity has a created datetime, and a Log entry also has a created ...
0
votes
0answers
88 views

MySQL replacing Timezone naive dates by aware. [Python Django Models]

I have a MySQL database with millions of rows of data. I also have an application responsible for having persisted that data in the DB. In my application settings, I'm using a specific timezone: ex: ...
4
votes
2answers
84 views

Using Python's datetime module, can I get the year that UTC-11 is currently in?

I would like to get the year that the UTC-11 timezone (the last timezone to enter the new year) is currently in, but I'm not sure how to do this. I have access to the pytz library, as well as ...
0
votes
0answers
101 views

Daylight Savings Time in Django With Time Zone Enabled

So, I have an app that I designed from the beginning to not use UTC, but instead depend on local time. I made this choice because the app would only be used during the day (between the hours of 9am ...
2
votes
1answer
49 views

Django ListView: taking a time difference in all items

I'm rather new to Class Based Views, so this is probably obvious, but any tips are appreciated. I want to display "time left" for each item on a list. That is if I have 10 objects, each should ...
0
votes
2answers
120 views

How to configure default timezone in Settings.py to Singapore

I am trying to configure the default timezone in settings.py to 'Asia/Singapore' however after I do that the page doesn't load and I get sent to the error page. Currently I am dealing with it by ...
1
vote
1answer
102 views

Python Django: tzinfo doesn't work for DB insertion. But why does .now(local_tz) work?

I am using Django. in settings: TIME_ZONE = 'Europe/Copenhagen' USE_TZ = True Due to DST, clock skips an hour on 2013-3-31. 01:59 goes to 03:00 I views: The date and time are given in local ...
1
vote
0answers
90 views

Django: how to store and display date times

With Django, can someone explain to me how DateTimes are stored in the Model/database and what is the best way to make sure that it is displayed correctly to the users? My users are all in the same ...
0
votes
1answer
337 views

How to get user's Timezone in Django 1.3 Http Request

I have read that there is a lot of timezone support available in Django 1.4, but how does one obtain user's timezone in Django 1.3? Once I have the timezone i.e. something like 'Europe\London' or ...
0
votes
1answer
37 views

Retreving all objects where a datetime field resolves to a date in another timezone

Let's say that I have a model like this: class Event(models.Model): title = CharField(max_length=100) start_time = DateTimeField() Now, all of the events are stored in the database in UTC. ...
0
votes
2answers
76 views

Timezone for server

I am building a application where the clients are supposed to pass a datetime field to query the database. But the client will be in different timezones, so how to solve that problem. Should I make ...
1
vote
1answer
341 views

Unix timestamp to datetime in django with timezone

I have a javascript calendar that is sending me a unixtimestamp. I am in Singapore. I want this timestamp to be interpreted as a Singapore timestamp and then converted to utc for comparisons with the ...
0
votes
2answers
65 views

While Inserting Time in to mysql database through django it stores different time

While Inserting time in to mysql database through django project it is stored as standard Greenwich time but not my standard time GMT+5.30. Example when i am giving 5.30 PM through django it is stored ...
0
votes
1answer
96 views

Django current time zone remembered after logging out

After the user logs out, Django seems to remember the last activated timezone. User posts form - datetime on form interpreted as UTC User logs in with preferred timezone of Australia/Sydney User ...
1
vote
2answers
318 views

Django Celery Timezone misconfiguration or bug

I updated my Django project (from celery==2.5.5 and django-celery==2.5.5) to celery==3.0.7 and django-celery==3.0.6. And then strange things happend. The first thing I noticed was that every ...
0
votes
2answers
246 views

date_format Django 1.4 with correct timezone

Okay simple question (I think). I have a DateTime field (auto_add_now) and when output to a template {{ edited|date:"DATETIME_FORMAT" }} I get the expected result of "Sept. 16, 2012, 12:01 p.m." ...
-1
votes
2answers
321 views

Issues with Django and pytz

I've followed the time zone documentation on the Django site with no luck. My issue is that I have a select box on my template that should be populated with common timezones provided by pytz, but, for ...
0
votes
0answers
21 views

how to use timezones for datetime fields that are foreign keys in admin interface

So basically I have a Project object which has a bunch of Items like so: class Project(models.Model): name = models.CharField(max_length=60) datetime = models.DateTimeField(auto_now_add=True) ...
0
votes
1answer
144 views

django 1.4 timezones not stored in UTC in db - why?

My settings file has USE_TZ = True and TIME_ZONE = 'GMT'. I have middleware that checks the user's timezone and sets that as the current timezone, which is working correctly. However, when I get a ...
3
votes
2answers
127 views

Django reverse internalization/localization

This is quite different question. We have a django web application in an European language. Now we want same app in English language. I guess if I just follow the django internalization/localization ...
0
votes
1answer
157 views

timezone support in django

I'm trying to get the various US timezones supported in Django. I'm able to get the America/New_York, etc. But my question is for places like Hawaii? I'm not able to find the proper timezone setting ...
4
votes
1answer
332 views

Formatting Time Django Template

I am extracting a time stamp from JSON which I want to convert to EST and format in human readable form. When I extract it from JSON, I get the following text: "2012-06-30T10:36:06-07:00" How do I ...
6
votes
1answer
2k views

How django time zone works with model.field's auto_now_add

I suppose time zone management was addded to django 1.4, so the problem is quite new. I used a simple model class Sample(models.Model): ... date_generated = models.DateTimeField(auto_now_add ...
0
votes
1answer
89 views

emencia.django.newsletter datetime problems with django 1.4

I am using emencia.django.newsletter. When I run `python manage.py send_newsletter' I get this error if self.newsletter.sending_date <= datetime.now() and \ TypeError: can't compare offset-naive ...
0
votes
1answer
58 views

django timezone issue in a formset field

A foreignkey object I'm using in a modelform shows up like this in the template: It shows the leg's datetime in UTC, which is the default timezone. It needs to show the date information localized ...
0
votes
1answer
2k views

django 1.4 timezone.now() vs datetime.datetime.now()

I'm a bit confused by the daylight savings handling settings.py: TIME_ZONE = 'Europe/London' USE_TZ = True in the django shell: >>> from django.utils import timezone >>> import ...
14
votes
1answer
7k views

django 1.4 - can't compare offset-naive and offset-aware datetimes

I am in the process of migrating an application from django 1.2 to 1.4. I have a daily task object which contains a time of day that task should be completed: class DailyTask(models.Model): time ...
9
votes
1answer
1k views

Migrate datetime w. timezone in PostgreSQL to UTC timezone to use Django 1.4

Do I need to convert all existing datetime in Postgres from their current timezone to UTC or will Django 1.4 timezone understand when reading something that is not UTC (but then save as UTC). I have ...
0
votes
2answers
312 views

New York timezone with Python

I want to serve my Django app the current time which clients will parse this datetimestamp with Javascript. I include my timezone as such: Apr 30, 2012 12:38:08 -400n I currently use the following ...
1
vote
1answer
179 views

django - str of datetime with user's timezone

I'm trying to build a blurb of text that I'll ultimately send in an SMS message. The blurb includes text of a datetime object that has UTC as the timezone, but needs the text to be localized for the ...
4
votes
1answer
1k views

django 1.4 how to automatically get user's timezone from client

I would like to know if there is a way to automatically retrieve user's timezone from client. Especially during login. I tried to add this in the login page (using auth.login): {% ...
0
votes
1answer
881 views

How do I get the visitor's current timezone then convert timezone.now() to string of the local time in Django 1.4?

I understand that the best practice now with Django 1.4 is to store all datetime in UTC and I agree with that. I also understand that all timezone conversation should be done in the template level ...
1
vote
1answer
220 views

django - confused about how to tailor datetime template presentation to local user time

I'm a django newbie and have been looking at this timezone stuff for several days now, and I'm still confused. I now have a timezone-aware datetime value stored in the postgres db in UTC. However, ...
2
votes
1answer
608 views

Django 1.4 and timezones

In django docs, it is written that they can always store the datetime objects in TIME_ZONE provided in settings. I wanted to ask that is it just sufficient to date time aware objects or do we have to ...
2
votes
1answer
444 views

migrating mysql datetime fields from django 1.3 to django 1.4

In my settings.py I use America/Chicago as my default TIME_ZONE variable. I am going to update to django 1.4 soon. As a MySql user, I would like to know if there is anything I need to know before the ...
3
votes
3answers
809 views

django.utils.timezone returning naive date?

using django 1.4 I have a model with a datetimefield. I imported django.utils.timezone to use as the default value. from django.utils import timezone date = models.DateTimeField(default=timezone.now) ...

1 2