Advertisement
Charflow

navigation.html 2

Apr 12th, 2015
276
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.21 KB | None | 0 0
  1. {% load i18n %}
  2. <nav class="navbar navbar-default navbar-static-top" role="navigation">
  3.     <div class="container">
  4.         <div class="navbar-header">
  5.             <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
  6.                 <span class="sr-only">{% trans "Toggle navigation" %}</span>
  7.                 <span class="icon-bar"></span>
  8.                 <span class="icon-bar"></span>
  9.                 <span class="icon-bar"></span>
  10.             </button>
  11.         </div>
  12.         <div class="collapse navbar-collapse">
  13.             <ul class="nav navbar-nav">
  14.                 <li><a href="/">{% trans "Home" %}</a></li>
  15.                 {% for category in categories %}
  16.                     {% if category.active == 1 %}
  17.                         {% if category.parentcategory == None %}
  18.                             {% if category.subcategories.all %}
  19.                                 <li class="divider-vertical"></li>
  20.                                 <li class="dropdown">
  21.                                     <a href="#" class="dropdown-toggle" data-toggle="dropdown">{{ category }} <b class="caret"></b></a>
  22.                                     <ul class="dropdown-menu">
  23.                                         {% if category.displaysub == False %}<li><a href="/category/{{ category.id }}/">{{ category }}</a></li>{% endif %}
  24.                                         {% for sub in categories %}
  25.                                             {% if sub.parentcategory.id == category.id %}
  26.                                         <li><a href="/category/{{ sub.id }}/">{{ sub }}</a></li>
  27.                                             {% endif %}
  28.                                         {% endfor %}
  29.                                     </ul>
  30.                                 </li>
  31.                             {% else %}
  32.                                 <li class="divider-vertical"></li>
  33.                                 <li><a href="/category/{{ category.id }}">{{ category }}</a></li>
  34.                             {% endif %}
  35.                         {% endif %}
  36.                     {% endif %}
  37.                 {% endfor %}
  38.             </ul>
  39.         </div><!--/.nav-collapse -->
  40.     </div>
  41. </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement