21 lines
1 KiB
HTML
21 lines
1 KiB
HTML
<nav>
|
|
<a href="{% url 'twitch:dashboard' %}"
|
|
{% if request.path == '/dashboard/' %}class="active"{% endif %}>Dashboard</a>
|
|
<a href="{% url 'twitch:campaign_list' %}"
|
|
{% if '/campaigns/' in request.path %}class="active"{% endif %}>Campaigns</a>
|
|
<a href="{% url 'twitch:game_list' %}"
|
|
{% if '/games/' in request.path %}class="active"{% endif %}>Games</a>
|
|
{% if user.is_authenticated %}
|
|
{% if user.is_staff %}
|
|
<a href="{% url 'admin:index' %}"
|
|
{% if '/admin/' in request.path %}class="active"{% endif %}>Admin</a>
|
|
{% endif %}
|
|
<a href="{% url 'accounts:profile' %}"
|
|
{% if '/profile/' in request.path %}class="active"{% endif %}>{{ user.username }}</a>
|
|
{% else %}
|
|
<a href="{% url 'accounts:login' %}"
|
|
{% if '/login/' in request.path %}class="active"{% endif %}>Login</a>
|
|
<a href="{% url 'accounts:signup' %}"
|
|
{% if '/signup/' in request.path %}class="active"{% endif %}>Sign Up</a>
|
|
{% endif %}
|
|
</nav>
|