{% load comic_tags %}

Comics Recomended By {{ profile.user.username }}

{% for comic in recommended_comics %} {% if forloop.counter == 6 %}
{% endif %}
{{ comic.title }}

{{ comic.description }}

{% if user == profile.user %}
remove
{% endif %}
{% if forloop.last and forloop.counter > 5 %}
more {% endif %} {% empty %}

No recommended comics.

{% endfor %}