jumpserver/templates/nav_cat_bar.html

23 lines
588 B
HTML
Raw Normal View History

2015-04-20 02:12:11 +00:00
<div class="row wrapper border-bottom white-bg page-heading">
2015-12-19 09:26:34 +00:00
<div class="col-sm-10">
2015-04-20 02:12:11 +00:00
<h2>{{ header_title }}</h2>
<ol class="breadcrumb">
<li>
2015-12-19 09:26:34 +00:00
<a href="{% url 'index' %}">仪表盘</a>
2015-04-20 02:12:11 +00:00
</li>
<li>
{% if path1 %}
<a>{{ path1 }}</a>
{% endif %}
</li>
{% if path2 %}
<li class="active">
<strong>{{ path2 }}</strong>
</li>
{% endif %}
</ol>
</div>
2015-12-19 09:26:34 +00:00
<div class="col-sm-2">
2015-04-20 02:12:11 +00:00
</div>
</div>