{% 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 %}
{% 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 %}{% if item.thread.start_post_id == item.pk -%} {% trans thread=thread(item), forum=forum(item.forum), user=username(item.user), date=item.date|reldate|low %}Thread {{ thread }} posted in {{ forum }} by {{ user }} {{ date }}{% endtrans %} {%- else -%} {% trans thread=thread(item), forum=forum(item.forum), user=username(item.user), date=item.date|reldate|low %}Reply to {{ thread }} posted in {{ forum }} by {{ user }} {{ date }}{% endtrans %} {%- endif %}
{% 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 %}