Commit 14315c01 authored by Ilham Maulana's avatar Ilham Maulana 💻

fix: book url path

parent c70d69b9
...@@ -16,38 +16,38 @@ ...@@ -16,38 +16,38 @@
><i class="bi bi-columns-gap"></i> Dashboard</a ><i class="bi bi-columns-gap"></i> Dashboard</a
> >
<a <a
href="/dashboard/books" href="/books"
class="btn {% if request.path == '/dashboard/books/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/books/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-book-half"></i> Books</a ><i class="bi bi-book-half"></i> Books</a
> >
<a <a
href="/dashboard/categories" href="/categories"
class="btn {% if request.path == '/dashboard/categories/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/categories/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-tags-fill"></i> Categories</a ><i class="bi bi-tags-fill"></i> Categories</a
> >
<a <a
href="/dashboard/members" href="/members"
class="btn {% if request.path == '/dashboard/members/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/members/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-person-vcard"></i> Members</a ><i class="bi bi-person-vcard"></i> Members</a
> >
<a <a
href="/dashboard/librarians" href="/librarians"
class="btn {% if request.path == '/dashboard/librarians/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/librarians/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-person-fill-lock"></i> Librarian</a ><i class="bi bi-person-fill-lock"></i> Librarian</a
> >
<a <a
href="/dashboard/book-loans" href="/book-loans"
class="btn {% if request.path == '/dashboard/book-loans/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/book-loans/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-calendar-week"></i> Book Loans</a ><i class="bi bi-calendar-week"></i> Book Loans</a
> >
<a <a
href="/dashboard/upcoming-loans/" href="/upcoming-loans/"
class="btn {% if request.path == '/dashboard/upcoming-loans/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/upcoming-loans/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-calendar2-event"></i> Upcoming Loans</a ><i class="bi bi-calendar2-event"></i> Upcoming Loans</a
> >
<a <a
href="/dashboard/overdued-loans/" href="/overdued-loans/"
class="btn {% if request.path == '/dashboard/overdued-loans/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100" class="btn {% if request.path == '/overdued-loans/' %}btn-primary{% else %}btn-outline-primary border-white text-white{% endif %} text-start w-100"
><i class="bi bi-calendar2-x"></i> Overdued Loans</a ><i class="bi bi-calendar2-x"></i> Overdued Loans</a
> >
</div> </div>
......
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