django-tables2を使用してテーブルを作成しましたが、URLテンプレートに他のインスタンスまたは変数を追加することを除いて、すべてが正常に機能しています。
これが私の見解です:
def SpecificPLayer(request, playerslug):
player = Player_Bios.objects.get(player_id=playerslug)
table= StatTable(BatStat.objects.filter(player_id=playerslug).values('season','team_id'))
RequestConfig(request, paginate=False).configure(table)
return render(request, 'singleplayer.html', {'table': table})
以下をテンプレートに渡したい場合はどうでしょうか。
today = date.today()
私の常識は私にこれをするように言った:
return render(request, 'singleplayer.html','today':taday {'table': table}) #does not work
私のsingleplayer.htmlには、次のものがあります。
{{ today }}