{#% 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 "All blogs" %}

{% autopaginate blog_list %} {% for blog in blog_list %} {% empty %} {% trans "No blogs found." %} {% endfor %} {% paginate %}
{% trans "Blog name" %}{% trans "Posts count" %}{% trans "Last post" %}
{% if blog.icon %} {% endif %} {{ 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 %}

{{ post.title }}

{% blocktrans with post.updated_at|timesince as time %}{{ time }} ago{% endblocktrans %} {% else %} {% trans "No posts yet." %} {% endif %}
{% endblock %}