{% extends "cranefly/profiles/profile.html" %} {% load i18n %} {% load humanize %} {% load url from future %} {% import "cranefly/macros.html" as macros with context %} {% block title %}{{ macros.page_title(_('Your News Feed')) }}{% endblock %} {% block content %} {% if follows %}

{% trans count=follows|length -%} You are following one member, find out what he posted recently: {%- pluralize -%} You are following {{ count }} members, find out what they posted recently: {%- endtrans %}

{% if posts %} {% else %}

{% trans username=user.username %}{{ username }}, there is nothing to display in your news feed... yet!{% endtrans %}

{% endif %} {% else %}

{% trans username=user.username %}{{ username }}, you have to follow other users in order to fill your news feed.{% endtrans %}

{% endif %} {% endblock %} {% macro thread(item) -%} {{ item.thread.name }} {%- endmacro %} {% macro forum(forum) -%} {{ forum.name }} {%- endmacro %} {% macro username(user) -%} {{ user.username }} {%- endmacro %}