0

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 }}
4

2 に答える 2

2

答えは次のとおりです。

 return render(request, 'singleplayer.html', {'table': table, 'today':taday})
于 2013-02-01T20:50:16.560 に答える
0

ディクショナリ内のビューで使用するすべての変数が必要です。

于 2013-02-01T20:51:14.460 に答える