some structure
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Simple_Not 2023-07-03 22:53:08 +10:00
parent 8d5cf827a0
commit bd9a18eec6

View File

@ -1,7 +1,10 @@
{% extends "base.html" %} {% extends "base.html" %}
{% block content %} {% block content %}
<div class="w-small w-2/3 mx-auto py-10 text-gray-600">
<div class="panel-block">
<div class="w-small w-2/3 mx-auto py-10 text-gray-600">
<input <input
type="text" type="text"
name="search" name="search"
@ -13,11 +16,11 @@
class="bg-white h-10 px-5 pr-10 rounded-full text-2xl focus:outline-none" class="bg-white h-10 px-5 pr-10 rounded-full text-2xl focus:outline-none"
> >
<span class="htmx-indicator">Searching...</span> <span class="htmx-indicator">Searching...</span>
</div> </div>
+dev 2 +dev 2
<table class="border-collapse w-small w-2/3 mx-auto"> <table class="border-collapse w-small w-2/3 mx-auto">
<thead> <thead>
<tr> <tr>
<th class="p-3 font-bold uppercase bg-gray-200 text-gray-600 border border-gray-300 hidden lg:table-cell">#</th> <th class="p-3 font-bold uppercase bg-gray-200 text-gray-600 border border-gray-300 hidden lg:table-cell">#</th>
@ -28,5 +31,6 @@
<tbody id="todo-results"> <tbody id="todo-results">
{% include 'todo.html' %} {% include 'todo.html' %}
</tbody> </tbody>
</table> </table>
</div>
{% endblock content %} {% endblock content %}