rustio-admin 0.1.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
{# Inject the active AdminTheme as CSS custom properties. #}
<style>
:root {
  --rio-accent: {{ accent_hex }};
  --rio-accent-rgb: {{ accent_rgb }};
  --rio-bg: {{ theme_bg }};
  --rio-surface: {{ theme_surface }};
  --rio-text: {{ theme_text }};
  --rio-text-muted: {{ theme_text_muted }};
  --rio-border: {{ theme_border }};
}
</style>