{% extends 'base.html' %} {% block title %}Entries | BrandX{% endblock title %} {% block content %}

Entries

{% if user.is_authenticated %} {% if user.profile.is_name_complete %} {% else %} To contribute, add your full name. {% endif %} {% endif %}
{% for entry in entries %}

{{ entry.title }}

{% if entry.author.profile.avatar %}{% endif %} {{entry.author.profile.full_name}}
{{entry.excerpt}} {% empty %}

No entries published.

{% endfor %}
{% endblock content %}