rustio-admin 0.2.0

Django Admin, but for Rust. A small, focused admin framework.
Documentation
1
2
3
4
5
6
{# Render a Vec<String> of inline errors, or nothing if empty. #}
{% if errors %}
<ul class="rio-field-errors" role="alert">
  {% for err in errors %}<li>{{ err }}</li>{% endfor %}
</ul>
{% endif %}