-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
9,499 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, shrink-to-fit=no" | ||
/> | ||
<link rel="icon" href="favicon.png" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" | ||
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" | ||
crossorigin="anonymous" | ||
/> | ||
|
||
<title>Local Libary - Admin Dashboard - Accounts</title> | ||
</head> | ||
|
||
<body> | ||
<header class="container-fluid bg-light border-bottom"> | ||
<nav class="row align-items-center"> | ||
<h1 class="h4 px-3">Local Library</h1> | ||
<div class="col"> | ||
<ul class="nav py-3"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./index.html">Overall Stats</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./books.html">Stats by Book</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="./accounts.html" | ||
>Stats by Account</a | ||
> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</header> | ||
|
||
<main class="container my-4"> | ||
<section class="row"> | ||
<nav class="col-5" style="max-height: 85vh"> | ||
<div class="card mh-100 overflow-auto"> | ||
<div class="card-header">Accounts</div> | ||
<ul id="accounts-list" class="list-group list-group-flush"> | ||
<li class="list-group-item">No accounts found...</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<article id="account-selection" class="col-7"></article> | ||
</section> | ||
</main> | ||
|
||
<script src="./data/accounts.js"></script> | ||
<script src="./data/authors.js"></script> | ||
<script src="./data/books.js"></script> | ||
<script src="./setup.js"></script> | ||
<script src="./src/accounts.js"></script> | ||
<script src="./renderers/accounts.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<!-- Required meta tags --> | ||
<meta charset="utf-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, initial-scale=1, shrink-to-fit=no" | ||
/> | ||
<link rel="icon" href="favicon.png" /> | ||
<link | ||
rel="stylesheet" | ||
href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" | ||
integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" | ||
crossorigin="anonymous" | ||
/> | ||
|
||
<title>Local Libary - Admin Dashboard - Books</title> | ||
</head> | ||
|
||
<body> | ||
<header class="container-fluid bg-light border-bottom"> | ||
<nav class="row align-items-center"> | ||
<h1 class="h4 px-3">Local Library</h1> | ||
<div class="col"> | ||
<ul class="nav py-3"> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./index.html">Overall Stats</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link active" href="./books.html">Stats by Book</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="./accounts.html">Stats by Account</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
</header> | ||
|
||
<main class="container my-4"> | ||
<section class="row"> | ||
<nav class="col-5" style="max-height: 85vh"> | ||
<div class="card mh-100 overflow-auto"> | ||
<div class="card-header">Books</div> | ||
<ul id="books-list" class="list-group list-group-flush"> | ||
<li class="list-group-item">No books found...</li> | ||
</ul> | ||
</div> | ||
</nav> | ||
<article id="book-selection" class="col-7"></article> | ||
</section> | ||
</main> | ||
|
||
<script src="./data/accounts.js"></script> | ||
<script src="./data/authors.js"></script> | ||
<script src="./data/books.js"></script> | ||
<script src="./setup.js"></script> | ||
<script src="./src/books.js"></script> | ||
<script src="./renderers/books.js"></script> | ||
</body> | ||
</html> |
Oops, something went wrong.