{% extends "base.html" %} {% block title %}{{ _('Admin · Analytics') }}{% endblock %} {% block content %} {% include "admin/_nav.html" %}
| {{ _('Date') }} | {{ _('Signups') }} |
|---|---|
| {{ row.day }} | {{ row.n }} |
{{ _('No signups in the last 30 days.') }}
{% endif %}| {{ _('Date') }} | {{ _('Listings') }} |
|---|---|
| {{ row.day }} | {{ row.n }} |
{{ _('No listings posted in the last 30 days.') }}
{% endif %}| {{ _('Date') }} | {{ _('Revenue') }} |
|---|---|
| {{ row.day }} | ${{ '%.2f'|format((row.cents or 0) / 100) }} |
{{ _('No revenue in the last 30 days.') }}
{% endif %}| {{ _('Category') }} | {{ _('Active listings') }} |
|---|---|
| {{ name }} | {{ n }} |
{{ _('No listings.') }}
{% endif %}