{% extends 'articles/base.html' %} {% load crispy_forms_tags %} {% block css %} {% endblock css %} {% block content %}
{{ author.username | title }}
{{ author.profile.headline|default:"" }}
{% if user == author %} {% endif %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{{ author.profile.summary }}
Author Articles
{% if user == author %} {% endif %}
{% for article in author.article_set.all %}

{{ article.title }}

{% endfor %}
{% include 'articles/inc/_footer.html' %} {% endblock content %}