diff options
| author | metamuffin <metamuffin@disroot.org> | 2026-02-17 00:17:48 +0100 |
|---|---|---|
| committer | metamuffin <metamuffin@disroot.org> | 2026-02-17 00:17:48 +0100 |
| commit | ee59ba81602a209c2262846032d7e936cb2e8d1f (patch) | |
| tree | 054fdb7614f17fd658aca6655e49d315b57d1e19 /ui/src/components/mod.rs | |
| parent | f8b6afd57efc1a9e7e12fe1316bc45dcc6f32470 (diff) | |
| download | jellything-ee59ba81602a209c2262846032d7e936cb2e8d1f.tar jellything-ee59ba81602a209c2262846032d7e936cb2e8d1f.tar.bz2 jellything-ee59ba81602a209c2262846032d7e936cb2e8d1f.tar.zst | |
node page
Diffstat (limited to 'ui/src/components/mod.rs')
| -rw-r--r-- | ui/src/components/mod.rs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/ui/src/components/mod.rs b/ui/src/components/mod.rs index cb9ec1b..3c51535 100644 --- a/ui/src/components/mod.rs +++ b/ui/src/components/mod.rs @@ -7,6 +7,8 @@ pub mod admin; pub mod login; pub mod message; +pub mod node_card; +pub mod node_list; pub mod node_page; pub mod props; pub mod stats; @@ -17,6 +19,7 @@ use crate::{ admin::{AdminDashboard, AdminImport}, login::{AccountLogin, AccountLogout, AccountSetPassword}, message::Message, + node_list::NodeList, node_page::NodePage, }, }; @@ -31,6 +34,9 @@ define! { @if let Some(nku) = view.get(VIEW_NODE_PAGE) { @NodePage { ri, nku } } + @if let Some(nl) = view.get(VIEW_NODE_LIST) { + @NodeList { ri, nl } + } @if let Some(()) = view.get(VIEW_ACCOUNT_LOGIN) { @AccountLogin { ri } } |