{% extends 'base.html' %} {% from 'macros.html' import bool_out_conv %} {% block title %} UCHAN See all {% endblock %} {% block body %}

See all

Home

{% if boards | length > 0 %} {% for board in boards %} {% set ns = namespace(posts_count = 0) %} {% for thread in board.threads %} {% set ns.posts_count = ns.posts_count + thread.posts | count %} {% endfor %} {% endfor %}
name threads posts last activity creation date forbid threads forbid posts
/{{board.name}} {{board.threads | count}}{{ns.posts_count}} {{board.last_activity_()}} {{board.creation_date_()}} {{bool_out_conv(board.forbid_threads)}} {{bool_out_conv(board.forbid_posts)}}
{% else %}

Boards not found. Create a new one

{% endif %}
{% endblock %}