rustio-admin-assets 0.33.0

Embedded admin templates for rustio-admin, shared by the runtime and the CLI.
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 %}