rustango 0.27.0

Django-shaped batteries-included web framework for Rust: ORM + migrations + auto-admin + multi-tenancy + audit log + auth (sessions, JWT, OAuth2/OIDC, HMAC) + APIs (ViewSet, OpenAPI auto-derive, JSON:API) + jobs (in-mem + Postgres) + email + media (S3 / R2 / B2 / MinIO + presigned uploads + collections + tags) + production middleware (CSRF, CSP, rate-limiting, compression, idempotency, etc.).
Documentation
<!doctype html>
<html lang="en" data-theme="{{ theme_mode | default(value='auto') }}">
<head>
<meta charset="utf-8">
<title>{% block title %}{{ brand_name | default(value='rustango admin') }}{% endblock title %}</title>
<script>
// No-flash theme application — runs before any CSS so the page never
// paints the wrong theme. localStorage overrides the server-supplied
// data-theme attribute set above.
(function(){try{var t=localStorage.getItem('rustango-theme');if(t==='light'||t==='dark'||t==='auto'){document.documentElement.dataset.theme=t;}}catch(e){}})();
</script>
{% include "_theme_tokens.html" %}
{% include "_admin_styles.html" %}
{% if tenant_brand_css %}<style>:root { {{ tenant_brand_css | safe }} }</style>{% endif %}
</head>
<body>
<div class="layout">
  {% include "_sidebar.html" %}
  <main class="content">
{% block body %}{% endblock body %}
  </main>
</div>
{% include "_theme_toggle.html" %}
</body>
</html>