{#% extends "blog/base.html" %#} {% extends "search/all.html" %} {% load i18n %} {% load misc_tags %} {% load pagination_tags %} {% block head_title %}{% trans "All blogs" %}{% endblock %} {% block extra_head %} {{ block.super }} {% endblock %} {% block body %}
{% trans "Blog name" %} | {% trans "Posts count" %} | {% trans "Last post" %} | |
---|---|---|---|
{% if blog.icon %}
|
{{ blog.name }} {{ blog.description }} |
{{ blog.post_list.count }} | {% set filter blog.post_list status 2 posts %} {% if posts %} {% set posts.0 post %} {% include "containers/_username.html" with user=post.author %} {% else %} {% trans "No posts yet." %} {% endif %} |