{% extends 'base.html' %} {% load humanize %} {% block breadcrumb %} {% endblock %} {% block content %} {% for board in boards %} {% endfor %}
Board Posts Topics Last Post
{{ board.name }} {{ board.description }} {{ board.get_posts_count }} {{ board.topics.count }} {% with post=board.get_last_post %} {% if post %} By {{ post.created_by.username }} {{ post.created_at|naturaltime }} {% else %} No posts yet. {% endif %} {% endwith %}
{% endblock %}