Tagged Questions
1
vote
0answers
19 views
Django ORM - Sum of calculated time differences in a list
Python newbie here... I have a bunch of RoomBooking events with a start and stop time in my Django model, and I need to retrieve the total duration of every event within a month, grouped by company. ...
0
votes
0answers
20 views
Displayed Date is different from data in Django
I am having trouble with displaying the correct date on my django app
For example
In my database, it is stored as "2013-05-03 22:20:01-07"
When I call it in the template by using {{ task.dateadded ...
0
votes
1answer
27 views
Queryset filter/excludes for dates
I have an event + dates type table design.
Class Event
...
Class EventDate
...
date = models.DateField()
event = model.ForeignKey(Event)
class Meta:
unique_together = ('date', ...
1
vote
2answers
56 views
django minutes between two datetimes
I know this question has been asked before and I've worked through the various answers along with the docs: http://docs.python.org/2/library/datetime.html#datetime-objects but I still haven't been ...
0
votes
1answer
32 views
Input_formats to DateTimeField
I have a DateTimeField :
start_time=forms.DateTimeField(input_formats='%y-%m-%d %H:%M')
and in html
{{form.start_time}}
but no matter what i entre in th field, like: 2013-07-07 19:00
it will ...
0
votes
1answer
61 views
Django model_to_dict skips all DateTimeField when converting models
I just noticed a bug with model_to_dict that it skips all DateTimeField in the model and never convert them to the dictionary, whereas use QuerySet's values() function does not. I looked on the ...
1
vote
3answers
78 views
Can I set a specific default time for a Django datetime field?
I have a model for events which almost always start at 10:00pm, but may on occasion start earlier/later. To make things easy in the admin, I'd like for the time to default to 10pm, but be changeable ...
0
votes
1answer
82 views
Django/Python: How to group queryset results by date?
I have a model for image uploads, that looks something like this:
from django.db import models
from django.contrib.auth.models import User
import datetime
class ImageItem(models.Model):
user = ...
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 ...
5
votes
1answer
113 views
Django error: cannot import name current_datetime
I'm Working through "The Django Book" and I keep getting the error "cannot import name current_datetime"
Urls.py:
from django.conf.urls.defaults import patterns, include, url
from mysite.views ...
0
votes
1answer
30 views
django settings.py DATETIME_FORMAT: %M does not correspond to Minutes
according to https://docs.djangoproject.com/en/1.5/ref/settings/#datetime-input-formats the following pattern should work if I put it into settings.py and deactivate USE_L1ON
'%Y-%m-%d %H:%M:%S', ...
0
votes
1answer
43 views
Using both naive and timezone aware datetimes in Django
The Django docs are pretty clear that naive datetimes should not be used, but I have a use case that I imagine is fairly common where I think I need them. Sometimes it is necessary in my project to ...
2
votes
2answers
142 views
DateTime field in Django form model
When using DateTimeField in ModelForms, they look like text fields. How can I make them look like in the admin? (When I go to the admin and add a show I see the fields as date fields)
# models.py
...
0
votes
2answers
54 views
Matching Month and Year In Python with datetime
I'm working on a blog using Django and I'm trying to use get() to retrieve the post from my database with a certain post_title and post_date. I'm using datetime for the post_date, and although I can ...
0
votes
2answers
199 views
Remove time in date time function?
I have a variable {{value.time}} in this value executes
March 22, 2013, 2:30 a.m
But I want to remove the 2:30 a.m (time) for this value in my templates file. How could I do this?
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 ...
1
vote
2answers
96 views
How to filter an object based on a DateTimeField range in Python (Django) using Tastypie
How can one filter an object based on a datetime field range using Tastypie.
I have a Post model:
class Post(models.Model):
title = models.CharField(max_length=40)
postTime = ...
0
votes
2answers
82 views
How to filter an object based on a datetime range in python (Django)
I am trying to create a page with all the most recent posts.
class Post(models.Model):
title = models.CharField(max_length=40)
postTime = models.DateTimeField(auto_now_add=True)
I found ...
-1
votes
1answer
63 views
How to subtract these two dates in Django/python?
I get start_date like this: start_date1 = datetime.datetime.utcnow().replace(tzinfo=utc)
and pass end_date as a function argument like this:
a(datetime.datetime.utcnow().replace(tzinfo=utc))
They ...
2
votes
1answer
148 views
Python datetime
I have a django model:
class Measurement(models.Model):
"""
Saves the measurment data for every subdevice
"""
node = models.ForeignKey('Node', related_name='measurements')
value = ...
0
votes
1answer
97 views
Django - Need datetime fields that can handle only year, or year and month values
I need to be able to only write year, or year and month (in addition to the standard full datetime values) in some of my datetime fields. Like these patterns below.
YYYY
YYYY-MM
YYYY-MM-DD
YYYY-MM-DD ...
0
votes
3answers
111 views
Can't compare naive and aware datetime.now() <= challenge.datetime_end
I am trying to compare the current date and time with dates and times specified in models using comparison operators:
if challenge.datetime_start <= datetime.now() <= challenge.datetime_end:
...
0
votes
0answers
11 views
How to find the end_date and duration in the following django celery chain?
I have a chain like this to call django celery tasks:
file_transfer.s(password, source12, destination1) | save_db.s(request.user.id, basename, extension, start_date, end_date, st, f_size, file_test) ...
1
vote
1answer
130 views
Django DateTimeField input Form
I have a DateTime field in my model and I'm looking for a simple way to make it look ok in the form, something like the SelectDateWidget. I've been looking at a lot of simular questions and it seems ...
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 ...
1
vote
1answer
42 views
A way to store relative dates in string form
I have a scheduler that will fire a task T, and some of the parameters to T are very dependent on the date. For example, if T is run on a Tuesday, some of the parameters would be:
param1 = ...
0
votes
2answers
86 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
92 views
Change Date Format in Django
Hi i am getting the date value from the database with the following
{{request.user.date_joined}}
in the following format `
Jan. 14, 2011, 6:40 a.m
and i need to change the format like this
...
2
votes
3answers
83 views
Date 6 months into the future
I am using the datetime Python module in django. I am looking to calculate the date if the expiry date is less than or equal to 6 months from the current date.
The reason I want to generate a date 6 ...
0
votes
1answer
18 views
How to communicate time data between different zone?
In my Django app I've got a Task model with some date and time fields:
class Task(models.Model):
date = models.DateField()
start_time = models.TimeField(help_text='hh:mm')
end_time = ...
0
votes
2answers
61 views
Datetime In Django Template
From this answer
In my template i need to make 1255992517000 to an date-time. i tried {{note.created|date:"U"}} and 1255992517000|date:"U" but it didn't work. How to get it to work? From django docs ...
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
185 views
Django: datetime.now() time inconsistency in model object save
The above is one of my tables in admin interface in the descending order of id(recent record is at top). And here is the way I used to create the model objects and save.
notification = ...
3
votes
1answer
60 views
pytz timezone tags to adjust date printed in templates
Inside my app I use normal datetime objects. In my template:
{% load tz %}
{{datetimeobject|timezone:"Europe/Paris"}}
{% timezone "Europe/Paris" %}
{{datetimeobject}}
{% endtimezone %}
This ...
0
votes
2answers
221 views
django time zone for printing date
I have django project with TIME_ZONE = 'America/Chicago' set in settings.py.
I am using dates like this:
from django.utils.dateparse import parse_datetime
import datetime
from datetime import ...
1
vote
1answer
147 views
Datetime object format error in form processing Django
I've been banging my head against the wall for a while now, and maybe someone can help me. This concerns Django forms and datetime format.
So I am attempting to make a form view that takes some ...
0
votes
0answers
87 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: ...
0
votes
0answers
30 views
Django Celery: Calling task returns datetime AttributeError
I was using ./manage.py shell to call my task.
Regardless of what was in my task, when I call:
result = myTask.delay()
I see in the Celery Console: "AttributeError: 'builtin_function_or_method' ...
0
votes
1answer
86 views
How can I subtract current DateTime from post time and make it fall within two conditions?
I'm trying to create a "what's popular page" with an algorithm that can populate my django view with photo posts from all users. I have a Photo_Poster & Photo model:
class ...
0
votes
1answer
74 views
Detecting if set time has elapsed since date in Django model
This code just keeps giving me errors. I have a field (datetime) in my Django model called invite_sent and another field in the same model called check_time Check time is the amount of time after ...
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 ...
0
votes
1answer
56 views
datetime with timezone field/template output strange behavior
Timezone settings settings.py:
USE_TZ = True
TIME_ZONE = 'Europe/Moscow' # +4
Record in database table(postgresql 9.1, timestamp with timezone :
2012-12-19 15:30:51.164368+04
Django date ...
3
votes
1answer
112 views
Django objects.dates('date', 'month') query is off by one month
I'm putting together a billing system in Django and I'm having a strange issue. In my views.py I make a query to pull out the unique months in which payments were made. I then iterate over this list ...
0
votes
0answers
95 views
Adding negative timedelta to DateTimeField with mysql backend
When adding a small negative timedelta to a DateTimeField I get a difference of two days. It almost looks like mysql backend does not understand negative days. The same code does not assert with ...
0
votes
3answers
83 views
How to create an ical duration field in Django?
I use a Django model that I register with the admin site. One of the fields of my model represents a duration. I would like to use the DateTimeField, but instead of saving the value to a datetime in ...
1
vote
1answer
85 views
python strptime in a specific format
I have a Django model with time field: time_from = models.TimeField(). I currently have a web form that sends the time in hours, for example: 12, 13, 4, 5 ... etc ...
I currently have this code: ...
0
votes
1answer
78 views
Python Date Formatting problems
I am trying to format a Datetime object I received from an XmlRPC API. The date is formatted like this (u'20121106T10:23:24'). I tried doing this:
s = datetime.strptime(u'20121106T10:23:24', ...
0
votes
2answers
84 views
DateTime Django. Capitalize the first Letter in French
In my django app, I display a dateTime in my template:
{{object.date}}
I wan't to display it in French. So in my settings, I put
LANGUAGE_CODE = 'fr_FR'
DATETIME_FORMAT = ('l ...
2
votes
2answers
202 views
Django Datetime Query
What's the most efficient way to query for objects created today (or for a specific day a given number of days in the past) in a timezone aware way in Django?
I know there are a lot of questions ...




