Advertisement
artur99

Untitled

May 25th, 2019
188
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.55 KB | None | 0 0
  1. <div class="right">
  2.         {% if hide_top_menu %}
  3.  
  4.         {% else %}
  5.         <div class="dropdown notif-ico-cnt">
  6.             <a href="#" data-toggle="dropdown">
  7.                 <img src="{% static 'icons/icon_notification.svg' %}" alt="" class="notif-ico">
  8.             </a>
  9.             <div class="dropdown-menu dropdown-menu-right movies-dropdown" style="width: 240px;">
  10.                 <div class="list-group" id="booked-movies-list">
  11.                     <!-- Will be filled by js -->
  12.                 </div>
  13.             </div>
  14.         </div>
  15.         <div class="dropdown user-menu">
  16.             <a href="#" class="" data-toggle="dropdown">
  17.                 <!--  -->
  18.                 {% if user.is_authenticated %}
  19.                 {{ user.username }}
  20.                 {% endif %}
  21.                 <img src="{% static 'icons/icon_down-arrow-small.svg' %}" alt="" class="arrow">
  22.             </a>
  23.             <div class="dropdown-menu dropdown-menu-right" aria-labelledby="dropdownMenuButton">
  24.                 <a class="dropdown-item" href="{% url 'settings' %}">
  25.                     <i class="fa fa-cog"></i> Settings
  26.                 </a>
  27.                 <a class="dropdown-item" href="javascript:{document.getElementById('logout').submit()}">
  28.                     <i class="fa fa-sign-out"></i> Logout
  29.                 </a>
  30.             </div>
  31.             <form action="{% url 'logout' %}" method="POST" id="logout">
  32.                 {% csrf_token %}
  33.                 <input type="hidden">
  34.             </form>
  35.         </div>
  36.         {% endif %}
  37.     </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement