Nenhuma Descrição

list.html 1.2KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {% extends 'base.html' %}
  2. {% load static %}
  3. {% block content %}
  4. <div class="text-xl font-semibold inline-block">title
  5. <div class="inline-block float-right">
  6. <div class="inline-block float-right">
  7. <button class="btn px-6 btn-sm normal-case btn-primary">Add New</button>
  8. </div>
  9. </div>
  10. </div>
  11. <div class="divider mt-2"></div>
  12. <div class="h-full w-full pb-6 bg-base-100">
  13. <div class="overflow-x-auto">
  14. <table class="table w-full">
  15. <!-- head -->
  16. <thead>
  17. <tr>
  18. <th></th>
  19. <th>Name</th>
  20. <th>Job</th>
  21. <th>Favorite Color</th>
  22. </tr>
  23. </thead>
  24. <tbody>
  25. <!-- row 1 -->
  26. <tr>
  27. <th>1</th>
  28. <td>Cy Ganderton</td>
  29. <td>Quality Control Specialist</td>
  30. <td>Blue</td>
  31. </tr>
  32. <!-- row 2 -->
  33. <tr>
  34. <th>2</th>
  35. <td>Hart Hagerty</td>
  36. <td>Desktop Support Technician</td>
  37. <td>Purple</td>
  38. </tr>
  39. <!-- row 3 -->
  40. <tr>
  41. <th>3</th>
  42. <td>Brice Swyre</td>
  43. <td>Tax Accountant</td>
  44. <td>Red</td>
  45. </tr>
  46. </tbody>
  47. </table>
  48. </div>
  49. </div>
  50. {% endblock %}