comment out sort select and script tag

This commit is contained in:
Sanjay B 2021-10-28 23:24:01 +05:30
parent 125fba583e
commit 6ba276afd0

View file

@ -3,6 +3,7 @@
{% block main %} {% block main %}
<div class="films"> <div class="films">
<!--
<div> <div>
<strong>Sort:</strong> <strong>Sort:</strong>
<select id="sort-select"> <select id="sort-select">
@ -14,6 +15,7 @@
<option value="lightness">Lightness</option> <option value="lightness">Lightness</option>
</select> </select>
</div> </div>
-->
<div id="films-list"> <div id="films-list">
{% for film in films %} {% for film in films %}
<div class="film" <div class="film"
@ -40,5 +42,5 @@
{% endblock %} {% endblock %}
{% block end %} {% block end %}
<script src="{% static 'js/films.js' %}"></script> <!-- <script src="{% static 'js/films.js' %}"></script> -->
{% endblock %} {% endblock %}