index.html 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {% extends theme("layout.html") %}
  2. {% block content %}
  3. {{ hooks.call("beforeBreadcrumb") | safe }}
  4. <ol class="breadcrumb">
  5. <li><a href="{{ url_for('forum.index') }}">Forum</a></li>
  6. </ol>
  7. {% for category, forums in categories %}
  8. {% include theme("forum/category_layout.html") %}
  9. {% endfor %}
  10. <!-- Forum Stats -->
  11. <table class="table table-bordered">
  12. <thead>
  13. <tr>
  14. <td colspan="2">
  15. <strong>Board Statistics</strong>
  16. [<a href="{{ url_for('forum.who_is_online') }}" onclick="window.open(this.href, 'wio_window','width=500,height=500'); return false;">Who is online?</a>]
  17. </td>
  18. </tr>
  19. </thead>
  20. <tbody>
  21. <tr>
  22. <td>
  23. Total number of registered users: <strong>{{ user_count }}</strong> <br />
  24. Total number of topics: <strong>{{ topic_count }}</strong> <br />
  25. Total number of posts: <strong>{{ post_count }}</strong> <br />
  26. </td>
  27. <td>
  28. Newest registered user: {% if newest_user %}<a href="{{ newest_user.url }}">{{ newest_user.username }}</a>{% else %}No users{% endif %}<br />
  29. Registered users online: <strong>{{ online_users }}</strong> <br />
  30. {% if config["REDIS_ENABLED"] %}
  31. Guests online: <strong>{{ online_guests }}</strong> <br />
  32. {% endif %}
  33. </td>
  34. </tr>
  35. </tbody>
  36. </table>
  37. {% endblock %}