{% extends 'base.html' %} {% from 'macros.html' import bool_out_conv %} {% block title %} UCHAN See all {% endblock %} {% block body %}
name | threads | posts | last activity | creation date | forbid threads | forbid posts |
---|---|---|---|---|---|---|
/{{board.name}} | {{board.threads | count}} | {% set ns = namespace(posts_count = 0) %} {% for thread in board.threads %} {% set ns.posts_count = ns.posts_count + thread.posts | count %} {% endfor %}{{ns.posts_count}} | {{board.last_activity_()}} | {{board.creation_date_()}} | {{bool_out_conv(board.forbid_threads)}} | {{bool_out_conv(board.forbid_posts)}} |
Boards not found. Create a new one
{% endif %}