Commit 588026ad authored by Raphael Remorosa's avatar Raphael Remorosa

'add into playlist' in search is only visible to users

parent 787d171a
...@@ -10,10 +10,6 @@ ...@@ -10,10 +10,6 @@
Source: Local</p> Source: Local</p>
{% endblock %} {% endblock %}
<!-- ... -->
<!-- Add if statement to show ONLY IF a user is logged in -->
<!-- ... -->
{% block content %} {% block content %}
{% for i in results %} {% for i in results %}
...@@ -30,6 +26,7 @@ ...@@ -30,6 +26,7 @@
</div> </div>
<!-- ... --> <!-- ... -->
{% if request.user.is_authenticated %}
<!-- ... --> <!-- ... -->
<div class="w3-dropdown-hover"> <div class="w3-dropdown-hover">
<button id="search_type" class="w3-button" style="width:200px; text-align: left;"><i class="fa fa-caret-down"></i> </button> <button id="search_type" class="w3-button" style="width:200px; text-align: left;"><i class="fa fa-caret-down"></i> </button>
...@@ -40,6 +37,7 @@ ...@@ -40,6 +37,7 @@
</div> </div>
</div> </div>
<!-- ... --> <!-- ... -->
{% endif %}
<!-- ... --> <!-- ... -->
...@@ -61,6 +59,7 @@ ...@@ -61,6 +59,7 @@
</div> </div>
<!-- ... --> <!-- ... -->
{% if request.user.is_authenticated %}
<!-- ... --> <!-- ... -->
<div class="w3-dropdown-hover"> <div class="w3-dropdown-hover">
<button id="search_type" class="w3-button" style="width:200px; text-align: left;"><i class="fa fa-caret-down"></i> </button> <button id="search_type" class="w3-button" style="width:200px; text-align: left;"><i class="fa fa-caret-down"></i> </button>
...@@ -71,6 +70,7 @@ ...@@ -71,6 +70,7 @@
</div> </div>
</div> </div>
<!-- ... --> <!-- ... -->
{% endif %}
<!-- ... --> <!-- ... -->
...@@ -89,6 +89,7 @@ ...@@ -89,6 +89,7 @@
</div> </div>
<!-- ... --> <!-- ... -->
{% if request.user.is_authenticated %}
<!-- ... --> <!-- ... -->
<div class="w3-dropdown-hover"> <div class="w3-dropdown-hover">
<button id="search_type" class="w3-button" style="width:200px; text-align: left;"><i class="fa fa-caret-down"></i> </button> <button id="search_type" class="w3-button" style="width:200px; text-align: left;"><i class="fa fa-caret-down"></i> </button>
...@@ -99,6 +100,7 @@ ...@@ -99,6 +100,7 @@
</div> </div>
</div> </div>
<!-- ... --> <!-- ... -->
{% endif %}
<!-- ... --> <!-- ... -->
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment