タイムシートにエントリを表示するカレンダーが必要です。私はこのガイドを使用して django カレンダーを作成していましたが、最終段階、つまり、実際に URL をビューに渡してカレンダーをレンダリングすることについては説明していません。経験に基づいた推測に基づいて、私の urlconf エントリは次のような怪物になりました。
url(r'^calendar/(?P<pk>\d+)/(?P<start__year>\d+)/(?P<start__month>\d+)/$', calendar(request, year, month)),
したがって、ビュー自体は次のようになります。
def calendar(request, year, month):
my_timesheet = Timesheet.objects.order_by('start').filter(start__year=year, start__month=month)
cal = TimesheetCalendar(my_timesheet).formatmonth(year, month)
return render_to_response('calendar.html', {'calendar':mark_safe(cal),})
カレンダーの世代は次のとおりです。
class TimesheetCalendar(HTMLCalendar):
def __init__(self, Timesheet):
super(TimesheetCalendar, self).__init__()
self.Timesheet = self.group_by_day(Timesheet)
def formatday(self, day, weekday):
if day != 0:
cssclass = self.cssclasses[weekday]
if date.today() == date(self.year, self.month, day):
cssclass += ' today'
if day in self.Timesheet:
cssclass += ' filled'
body = ['<ul>']
for timesheet in self.Timesheet[day]:
body.append('<li>')
body.append(esc(Timesheet.activity))
body.append('</li>')
body.append('</ul>')
return self.day_cell(cssclass, '%d %s' % (day, ''.join(body)))
return self.day_cell(cssclass,day)
return self.daycell('noday',' ')
def formatmonth(self, year, month):
self.year, self.month = year, month
return super(TimesheetCalendar, self).formatmonth(year, month)
def group_by_day(self, Timesheet):
field = lambda Timesheet: Timesheet.start.day
return dict(
[(day, list(items)) for day, items in groupby(Timesheet, field)]
)
def day_cell(self, cssclass, body):
return '<td class="%s">%s</td>' %(cssclass, body)
モデルの日付フィールドからこれらの属性、月と年を正しく渡すにはどうすればよいstart
ですか?