{% extends "base.html" %} {% load i18n %} {% block local_headers %} {% if account.can_publish %} {% for form in content_forms %} {{ form.media }} {% endfor %} {% endif %} {% endblock %} {% block title %}{% blocktrans %}Activity Feed{% endblocktrans %}{% endblock %} {% block contextbar %} {% include 'account/profile.box.html' %} {% include 'account/actions.box.html' %} {% include "account/relations.box.html" %} {% endblock %} {% block content %}
{% if account.can_publish %} {% include "content/content_forms.part.html" %} {% endif %} {% if latest_content_list %} {% for content in latest_content_list %} {%include content.summary_view %} {% endfor %} {% else %}
{% blocktrans %}No content.{% endblocktrans %}
{% endif %} {% endblock %}