diff options
author | metamuffin <metamuffin@disroot.org> | 2025-02-16 13:25:02 +0100 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2025-02-16 13:25:02 +0100 |
commit | abe663807337faa717f9485b047c8f0e808f2a09 (patch) | |
tree | db969df5bf119debc9e2ba6450e3fd05c2f39b0d /server/src/routes/ui/layout.rs | |
parent | 079fec9f206751047248c8c7733d7eccbd89d94b (diff) | |
download | jellything-abe663807337faa717f9485b047c8f0e808f2a09.tar jellything-abe663807337faa717f9485b047c8f0e808f2a09.tar.bz2 jellything-abe663807337faa717f9485b047c8f0e808f2a09.tar.zst |
stats page
Diffstat (limited to 'server/src/routes/ui/layout.rs')
-rw-r--r-- | server/src/routes/ui/layout.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/server/src/routes/ui/layout.rs b/server/src/routes/ui/layout.rs index 3b2db28..b94a873 100644 --- a/server/src/routes/ui/layout.rs +++ b/server/src/routes/ui/layout.rs @@ -14,6 +14,7 @@ use crate::{ browser::rocket_uri_macro_r_all_items, node::rocket_uri_macro_r_library_node, search::rocket_uri_macro_r_search, + stats::rocket_uri_macro_r_stats, }, uri, }; @@ -49,6 +50,7 @@ markup::define! { a.library[href=uri!(r_library_node("library"))] { "My Library" } " " a.library[href=uri!(r_all_items())] { "All Items" } " " a.library[href=uri!(r_search(None::<&'static str>, None::<usize>))] { "Search" } " " + a.library[href=uri!(r_stats())] { "Stats" } " " } @if is_importing() { span.warn { "Library database is updating..." } } div.account { |