djangoviews.pyファイルにdayarchiveviewがあります
class day_archive(DayArchiveView):
model=Timer
paginate_by=12
allow_future =True
allow_empty=True
month_format = '%m'
day_format='%d'
date_field='start_hour'
template_name='timer/timer_archive_date'
def get_queryset(self):
return Timer.objects.filter(author=self.request.user)
しかし、次のようなdjangotables2を使用して、テーブルとして返されるデータをレンダリングしたいと思います。
import django_tables2 as tables
class Job_table(tables.Table):
class Meta:
model = Timer
attrs = {"class": "paleblue"}
fields= ('start_hour','end_hour','category','subcategory','duration')
def render_duration(self,value):
from timehuman import sectohour
hh= sectohour(value)
return hh
レンダリングされたリストではなく、テーブルとしてデータをレンダリングするにはどうすればよいですか?(djangoによるcontext object_list)object_listコンテキストに送信されるデータにアクセスして変更するにはどうすればよいですか?