Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
L
library-app-django
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Ilham Maulana
library-app-django
Commits
039bd494
Commit
039bd494
authored
Jul 15, 2024
by
Ilham Maulana
💻
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix: librarian form button url
parent
8d9a2223
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
librarians.html
users/templates/librarians/librarians.html
+1
-1
librarians_table_data.html
users/templates/librarians/librarians_table_data.html
+2
-2
No files found.
users/templates/librarians/librarians.html
View file @
039bd494
...
...
@@ -2,7 +2,7 @@
<div
style=
"max-width: 80vw"
class=
"w-100 p-4"
>
<div
class=
"d-flex gap-2 mb-4"
>
{% include "order_form.html" %}
<a
type=
"button"
class=
"btn btn-primary"
href=
"/
dashboard/
librarians/add/"
>
<a
type=
"button"
class=
"btn btn-primary"
href=
"/librarians/add/"
>
<i
class=
"bi bi-plus-circle"
></i>
Add Librarian
</a>
{% include "search_form.html" %}
...
...
users/templates/librarians/librarians_table_data.html
View file @
039bd494
...
...
@@ -18,13 +18,13 @@
<td
class=
"d-flex gap-2"
>
<a
class=
"btn btn-success"
href=
"/
dashboard/
librarians/{{ librarian.id }}/"
href=
"/librarians/{{ librarian.id }}/"
>
<i
class=
"bi bi-pencil-square"
></i>
</a>
<a
class=
"btn btn-danger"
href=
"/
dashboard/
librarians/{{ librarian.id }}/delete/"
href=
"/librarians/{{ librarian.id }}/delete/"
>
<i
class=
"bi bi-trash3-fill"
></i>
</a>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment