django active link

Solutions on MaxInterview for django active link by the best coders in the world

showing results for - "django active link"
Erik
10 Apr 2017
1pip install django-active-link
2
3INSTALLED_APPS = (
4  'active_link',
5)
6
7{% load active_link_tags %}
8
9<a href="{% url 'view-name' %}" class="{% active_link 'view-name' %}">Menu item</a>
10