Replies: 1 comment
-
|
There isn't yet a Rust-native admin panel as full-featured and integrated as Django Admin, especially one that plugs directly into a framework like Loco (Axum + SeaORM). Render HTML Admin Pages (Askama or Tera templates) Example: rooms list view rust html
Add Filtering/Search (query params) rust } Add Forms for Create/Edit (with CSRF/token protection) Validate with axum_extra::extract::Form or custom logic Render errors inline in the form template Auth Protect Admin Routes rust rust |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
I'm building a backend in Rust using the Loco, which is based on Axum and SeaORM. I'm really enjoying the structure but I'm wondering:
In Django, I can register my models and instantly get a powerful CRUD interface with filtering, search, inline editing, etc. I’m looking for something similar in Rust – ideally something that works with Loco.rs project.
Beta Was this translation helpful? Give feedback.
All reactions