Advertisement
Guest User

Untitled

a guest
Nov 27th, 2014
264
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.69 KB | None | 0 0
  1. {% load i18n menu_tags cache %}
  2.  
  3. {% for child in children %}
  4.  
  5.  
  6. <li class="{% if child.ancestor %}ancestor{% endif %}{% if child.selected %} active{% endif %}{% if child.children %} dropdown{% endif %}">
  7.     {% if child.children %}<a class="dropdown-toggle" data-toggle="dropdown" href="#">{{ child.get_menu_title }} <span class="caret"></span></a>
  8.     <ul class="dropdown-menu">
  9.         {% show_menu from_level to_level extra_inactive extra_active template "" "" child %}
  10.     </ul>
  11.     {% else %}
  12.     <a href="{{ child.get_absolute_url }}"><span>{{ child.get_menu_title }}</span></a>
  13.     {% endif %}
  14. </li>
  15.  
  16. {% if class and forloop.last and not forloop.parentloop %}
  17. {% endif %}
  18. {% endfor %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement