{% extends "blog/base.html" %} {% load i18n %} {% load blog_tags %} {% block head_title %} {% ifequal request.user other_user %} {% trans "Your feed" %} {% else %} {% blocktrans with other_user.username as username %}{{ username }}'s feed{% endblocktrans %} {% endifequal %} {% endblock %} {% block body %}

{% ifequal request.user other_user %} {% trans "Your feed" %} {% else %} {% blocktrans with other_user.username as username %}{{ username }}'s feed{% endblocktrans %} {% endifequal %}

{% if post_list %} {% include "blog/post_iterator.html" %} {% else %} {% trans "No posts yet." %} {% endif %} {% endblock %}