我想在django模板中使用xhtml2pdf在最后一页显示页脚

时间:2013-07-31 07:30:19

标签: python django xhtml2pdf

如果我删除lastpage关键字然后它在所有页面上显示页脚但是当我添加lastpage关键字时它没有显示任何页脚

 <style>       
            {% block style %}
               @page lastpage{ ///last page keword line
                    size: {{pagesize}};
                    margin: 1cm;
                    @frame footer {
                        -pdf-frame-content: footerContent; ///footer div
                        bottom: 1cm;
                        margin-left: 1cm;
                        margin-right: 1cm;
                        height: 140px;
                    }
                }
            {%endblock%}
        </style>

    <body>
                    <div id="footerContent">
                <div class="botom">
                        test data
                </div>  
                <div class="agree">
                    I/We certify that our xxx...
                </div>  
            </div>
    </body>

0 个答案:

没有答案