Commit c2f59edd authored by impfundev's avatar impfundev

fix: table action button

parent f577528d
......@@ -16,10 +16,16 @@
<td>{{ category.created_at }}</td>
<td>{{ category.updated_at }}</td>
<td class="d-flex gap-2">
<a class="btn btn-success" href="/dashboard/books/{{ book.id }}/">
<a
class="btn btn-success"
href="/dashboard/categories/{{ category.id }}/"
>
<i class="bi bi-pencil-square"></i>
</a>
<a class="btn btn-danger" href="/dashboard/books/{{ book.id }}/delete/">
<a
class="btn btn-danger"
href="/dashboard/categories/{{ category.id }}/delete/"
>
<i class="bi bi-trash3-fill"></i>
</a>
</td>
......
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