index.html 1.8 KB

1234567891011121314151617181920212223242526272829303132
  1. {% extends theme("layout.html") %}
  2. {% block content %}
  3. <div class="index-view">
  4. {% for category, forums in categories %}
  5. {% include theme("forum/category_layout.html") %}
  6. {% endfor %}
  7. <div class="panel page-panel">
  8. <div class="panel-heading page-head">
  9. {% trans %}Board Statistics{% endtrans %}
  10. [<a href="{{ url_for('forum.who_is_online') }}" onclick="window.open(this.href, 'wio_window','width=500,height=500'); return false;">{% trans %}Who is online?{% endtrans %}</a>]
  11. </div>
  12. <div class="panel-body page-body">
  13. <div class="row page-row">
  14. <div class="col-md-6 col-sm-6 col-xs-12">
  15. <p class="flaskbb-stats">{% trans %}Total number of registered users{% endtrans %}: <strong>{{ user_count }}</strong></p>
  16. <p class="flaskbb-stats">{% trans %}Total number of topics{% endtrans %}: <strong>{{ topic_count }}</strong></p>
  17. <p class="flaskbb-stats">{% trans %}Total number of posts{% endtrans %}: <strong>{{ post_count }}</strong></p>
  18. </div>
  19. <div class="col-md-6 col-sm-6 col-xs-12">
  20. <p class="flaskbb-stats">{% trans %}Newest registered user{% endtrans %}: {% if newest_user %}<a href="{{ newest_user.url }}">{{ newest_user.username }}</a>{% else %}{% trans %}No users{% endtrans %}{% endif %}</p>
  21. <p class="flaskbb-stats">{% trans %}Registered users online{% endtrans %}: <strong>{{ online_users }}</strong></p>
  22. {% if config["REDIS_ENABLED"] %}
  23. <p class="flaskbb-stats">{% trans %}Guests online{% endtrans %}: <strong>{{ online_guests }}</strong></p>
  24. {% endif %}
  25. </div>
  26. </div>
  27. </div>
  28. </div>
  29. </div>
  30. {% endblock %}