我正在尝试在django模板中从上下文变量的值中添加页脚中的值。
我在django模板的内部css中添加了以下代码。
@page{
@bottom-right {
content: "Invoice No :- " {{ obj.property }} "Page No." counter(page) "/" counter(pages)
}
}
使用{{ obj.property }}
后,上述代码无效
因为我认为django模板不允许使用上下文变量更改内部css。
我还提到了this问题。
有没有办法在css中或与jquery(或js)结合使用?
答案 0 :(得分:0)
我找到了答案。显示数据时我的语法不正确。
我刚刚添加了''在{{ object.property }}
左右,它工作正常。
所以我的新代码很简单。
@page{
@bottom-right {
content: "Invoice No :- " '{{ obj.property }}' " Page No." counter(page) "/" counter(pages)
}
}