Return the day for which this view should display data.
132
133
134
135
136
137
138
139
140
141
142
143
defget_day(self):"""Return the day for which this view should display data."""day=self.dayifdayisNone:try:day=self.kwargs['day']exceptKeyError:try:day=self.request.GET['day']exceptKeyError:raiseHttp404(_("No day specified"))returnday
Get a day format string in strptime syntax to be used to parse the day
from url variables.
125
126
127
128
129
130
defget_day_format(self):""" Get a day format string in strptime syntax to be used to parse the day from url variables. """returnself.day_format
Get the next valid day.
145
146
147
defget_next_day(self,date):"""Get the next valid day."""return_get_next_prev(self,date,is_previous=False,period='day')
Get the previous valid day.
149
150
151
defget_previous_day(self,date):"""Get the previous valid day."""return_get_next_prev(self,date,is_previous=True,period='day')
Return the start date of the current interval.
161
162
163
def_get_current_day(self,date):"""Return the start date of the current interval."""returndate
Return the start date of the next interval.
The interval is defined by start date <= item date < next start date.
153
154
155
156
157
158
def_get_next_day(self,date):""" Return the start date of the next interval. The interval is defined by start date <= item date < next start date. """returndate+datetime.timedelta(days=1)