{% extends 'profile.html' %} {% load staticfiles %} {% block profile-wall %} {% for post in posts %}
{% if post.publisher != post.owner %} {% endif %}

{{ post.title|truncatechars:95 }}

{% if post.image_url %} {% endif %} {% if post.summary %}
{{ post.summary }}
{% endif %} {% if post.tags %}
Tags: {% for tag in post.get_tags_as_list %} {{ tag }} {% endfor %}
{% endif %}
{{ post.adds.count }} Adds {{ post.reactions.count }} Stars
{% include 'link/comment.html' %}
{% empty %}
No items yet.
{% endfor %} {% endblock %}