Skip to main content

max / makenotwork

698 B · 18 lines History Blame Raw
1 //! User and item dashboard HTMX tab partials.
2
3 mod item;
4 mod user;
5
6 pub(super) use item::{
7 item_tab_details, item_tab_embed, item_tab_files, item_tab_overview, item_tab_pricing,
8 item_tab_sales,
9 };
10 /// The four user tabs the dashboard page can render inline, for the described
11 /// strip's shown panel. `6b24f2df` step 5.
12 pub(super) use user::{build_payments, build_settings};
13 pub(super) use user::{
14 dashboard_tab_account, dashboard_tab_creator, dashboard_tab_details, dashboard_tab_media,
15 dashboard_tab_payments, dashboard_tab_profile, dashboard_tab_projects, dashboard_tab_settings,
16 dashboard_tab_support, dashboard_tab_synckit, dashboard_transactions, regenerate_feed_url,
17 };
18