Skip to content

Commit

Permalink
Add comments and spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
anthony-ndegwa-dev committed Feb 17, 2023
1 parent 11b50e4 commit 487c771
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion templates/saved_view.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,18 @@

{% block content %}
<section>
<!--<h4 class="title mb-3">To Do Lists</h4>-->

<!-- This form searches given text input -->
<form method="get" action="{% url 'search_results' %}" enctype="multipart/form-data" autocomplete="off" class="vigor">
<input type="text" name="q" placeholder="Search... by Subject">
</form>

<!-- This form searches given date input -->
<form method="get" action="{% url 'searched_results' %}" enctype="multipart/form-data" autocomplete="off" class="vigor">
<input type="date" name="t">
<input type="submit" class="btn" value="Search" />
</form>

<table class="table table-striped table-bordered table-sm">
<thead>
<tr class="theader">
Expand All @@ -36,6 +40,7 @@

</table>

<!-- Paginate table with more than 5 records -->
{% if todolist.has_other_pages %}
<ul class="pagination">
{% if todolist.has_previous %}
Expand Down

0 comments on commit 487c771

Please sign in to comment.