Add a nav bar to all templates

后端 未结 3 2039
执笔经年
执笔经年 2021-02-13 14:20

I want to show a nav bar on every page. In PHP, I would write the nav bar then include it on the other pages. I tried to include or extend the nav bar template into the other

3条回答
  •  無奈伤痛
    2021-02-13 14:56

    If you want to use the same navbar in every page, you don't need the {% block navbar %}...{% endblock %} in layout.html. Alternatively, you might have to use {{ super() }} as described here.

提交回复
热议问题