rustio-admin 0.30.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
1
2
3
4
5
6
7
8
9
10
11
{% extends "admin/_base.html" %}
{% block content %}
<section class="rio-board rio-error">
  <p class="rio-error-status">403</p>
  <h1>{{ page_title }}</h1>
  <p>You do not have permission to access this page.</p>
  {% if required_role %}<p>Minimum role required: <strong>{{ required_role }}</strong>.</p>{% endif %}
  {% if attempted %}<p>Attempted: <code>{{ attempted }}</code></p>{% endif %}
  <a class="rio-btn rio-btn--secondary rio-btn--md" href="/admin">{{ icon("arrow-left") }} Back to dashboard</a>
</section>
{% endblock %}