{% extends "base.html" %} {% block content %}
{% if models %} {{ _("{count} model registered", count=models|length) if models|length == 1 else _("{count} models registered", count=models|length) }} · {{ dialect }} {% else %} {{ _("Nothing registered yet") }} {% endif %}
{{ _("{count} in the last {days} days", count=signups.total, days=signups.bars|length) }}
| {{ _("Date") }} | {{ _("Count") }} |
|---|---|
| {{ bar.iso }} | {{ bar.count }} |
Register one with @admin.register(Model), then make
sure the module is imported — see
fort.autodiscover(...) and
fort.include_admin(...).