{% extends 'layouts/base.html' %} {% block content %}
{% if new_users|length > 0 %}

New Users

    {% for new_user in new_users %}
  • {{ new_user.username }} as of {{ new_user.get_registration_delta() }} ago
  • {% endfor %}
{% endif %}

Runnerspace Statistics

{% with comments = stats['total_comments'], posts = stats['total_posts'], users = stats['total_users'] %}
  • {{ comments }} comment across {{ posts }} post{{ posts|pluralize }}
  • {{ users }} user{{ users|pluralize }}
{% endwith %}
{% endblock %}