rustango 0.14.2

Django-shaped web framework for Rust: ORM, migrations, auto-admin, multi-tenancy, audit log.
Documentation
{% extends "base.html" %}
{% block body %}
<h1>rustango admin</h1>
{% if models | length == 0 %}
<p><em>No models registered.</em></p>
{% else %}
{% for group in groups %}
<section>
  <h2>{{ group.app }}</h2>
  <table>
    <thead>
      <tr><th>Model</th><th>Table</th><th>Fields</th></tr>
    </thead>
    <tbody>
    {% for m in group.models %}
      <tr>
        <td><a href="/__admin/{{ m.table }}">{{ m.name }}</a></td>
        <td>{{ m.table }}</td>
        <td>{{ m.field_count }}</td>
      </tr>
    {% endfor %}
    </tbody>
  </table>
</section>
{% endfor %}
{% endif %}
{% endblock body %}