Skip to content

Instantly share code, notes, and snippets.

@maxtortime
Created August 13, 2018 01:41
Show Gist options
  • Save maxtortime/96dc1f5b54a41ff542944a4952d66af4 to your computer and use it in GitHub Desktop.
Save maxtortime/96dc1f5b54a41ff542944a4952d66af4 to your computer and use it in GitHub Desktop.
django navbar for문
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
{% for menu in menus %}
<li class="nav-item {{ menu.active }}">
<a class="nav-link" href="{{ menu.path }}">{{ menu.name }}</a>
</li>
{% endfor %}
</ul>
<a href="{% url 'logout' %}">LOGOUT</a>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment