Advertisement
Guest User

Untitled

a guest
Mar 25th, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.91 KB | None | 0 0
  1.     <nav class="navbar navbar-expand-sm navbar-dark bg-primary mb-3">
  2.         <div class="container">
  3.             <a class="navbar-brand"   href="{% url 'home' %}"><img src="{% static 'img/page/brand_dark.png' %}" class="img-fluid" style="max-height: 70px;" alt=""></a>
  4.             <ul class="navbar-nav" style="min-width: 200px;">
  5.                 <li class="nav-item notification-bell ml-5">
  6.                     <a class="nav-link" href="{% url 'notifications' %}"><i class="far fa-bell" style="font-size:50px; line-height:50px;"></i></a>
  7.                     {% if notifications %}
  8.                         <div class="notification-counter">{{ notifications_number }}</div>
  9.                     {% endif %}
  10.                 </li>
  11.                 <li class="nav-item dropdown ml-md-4">
  12.                     {% comment %} <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown"><img style=" height:50px; border-radius:100%" src="{% static 'img/page/avatar.png' %}" alt=""></a> {% endcomment %}
  13.                     <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown"><img style=" max-height:50px; border-radius:100%" src="{{ request.user.avatar.url }}" alt=""></a>
  14.                     <div class="dropdown-menu">
  15.                         <a href="{% url 'profile_detail' username=request.user.username %}" class="dropdown-item">My Profile</a>
  16.                         <a href="{% url 'profile_update' pk=request.user.pk %}" class="dropdown-item">Edit Profile</a>
  17.                         <a href="#" class="dropdown-item">Badges</a>
  18.                         <a href="{% url 'messages' %}" class="dropdown-item">Messages</a>
  19.                         <a href="{% url 'ranking' %}" class="dropdown-item">Ranking</a>
  20.                         <a href="{% url 'logout' %}" class="dropdown-item">Sign Out</a>
  21.                     </div>
  22.                 </li>
  23.                
  24.             </ul>
  25.         </div>
  26.     </nav>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement