Navigation in django

后端 未结 30 1429

I\'ve just done my first little webapp in django and I love it. I\'m about to start on converting an old production PHP site into django and as part its template, there is a

30条回答
  •  旧巷少年郎
    2020-11-27 09:40

    Inspired by this solution, I started to use this approach:

    **Placed in templates as base.html**
    
    {% block tab_menu %}
    
    {% endblock tab_menu %}
    
    **Placed in your page template**
    
    {% extends "base.html" %}
    
    {% block tab_menu %}
      {% with active_tab="tab1" %} {{ block.super }} {% endwith %}
    {% endblock tab_menu %}
    

提交回复
热议问题