当前位置:   article > 正文

Django 页面继承 {% block %}

{% block %}

本文使用的摸本继承用于开发带有导航窗口的网站:

在导航窗文件中需要被替换的地方使用

  {% block  contentPage %} 
   需要被替换的内容
   {% endblock %}
  • 1
  • 2
  • 3

在非导航页面开头引入父模板路径:

{% extends 'common/navigation/navigation.html' %}
  • 1

然后使用:

  {% block contentage %}
    用于替换的内容
    {% endblock %}
  • 1
  • 2
  • 3

例如:
这是导航窗口中需要被替换的内容:

 {% block  contentPage %}
  <div>
       <div class="row " style="text-align: center;margin-top:4%">
           <p style="font-size: 35px;"> 哦吼,页面不见了..... </p>
           <p style="font-size: 20px;margin-top:2%">点击看心情随机返回&nbsp;&nbsp;&nbsp;&nbsp;<a
                   style="font-size: 18px;font-weight:bold;">&nbsp;&nbsp;&nbsp;&nbsp; 返回</a></p>
           <div style="margin-top:4%">
               <div>
                   <img src="../../../static/picture/404.png">
               </div>
               <div>
                   <img src="../../../static/picture/provocative.png">
               </div>
           </div>
       </div>
   </div>
  {% endblock %}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17

这是替换导航页面的内容:

{% extends 'common/navigation/navigation.html' %}
{% block contentPage %}
    <div class="row" ng-app="homePage" ng-controller="homePageCtl">
        <div class="col-lg-12">
            <div class="ibox float-e-margins">
                <div class="ibox-title">
                    <h5>aaaaa:</h5>
                    <div ibox-tools></div>
                </div>
                <div class="ibox-content">
                    {#                <input type="text" class="form-control input-sm m-b-xs" id="filter"#}
                    {#                       placeholder="Search in table">#}
                    <table id="planTable" class="footable table table-stripped table-bordered" data-page-size="8">
                        <thead>
                        <tr class="text-center">
                            <th>aa</th>
                            <th>bb</th>
                            <th>cc</th>
                            <th>dd</th>
                        </tr>
                        </thead>
                        <tbody>
                        <tr class="gradeX" ng-repeat="values in tableValues">
                            <td>[[ values.a ]]</td>
                            <td class="center">[[ values.b ]]</td>
                            <td class="center">[[ values.c ]]</td>
                        </tr>
                        </tbody>
                        <tfoot>
                        <tr>
                            <td colspan="5">
                                <ul class="pagination pull-right"></ul>
                            </td>
                        </tr>
                        </tfoot>
                    </table>
                </div>
            </div>
        </div>
    </div>
    <script src="static/js/LPMS/homePage.js"></script>
{% endblock %}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42

继承之前的页面:
在这里插入图片描述
成功继承后的页面:
在这里插入图片描述
可以看到正常的表格内容替换了那个欠打的404页面。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/769209
推荐阅读
相关标签
  

闽ICP备14008679号