{% extends 'articles/base.html' %} {% load crispy_forms_tags %} {% block css %} {% endblock css %} {% block content %} {% if author.profile.profile_picture %} {% else %} {% endif %} {{ author.article_set.count|default:"No"}} Article(s) {{ author.username | title }} {{ author.profile.headline|default:"" }} {% if user == author %} Academic Profile Edit Profile {% csrf_token %} EDIT YOUR PROFILE × {% if not profile_not_found %} {{ profile_edit_form|crispy }} SOCIAL LINKS {{ social_links_form|crispy }} {% else %} {{ profile_not_found }} {% endif %} {% endif %} {% if messages %} {% for message in messages %} {{ message }} × {% endfor %} {% endif %} {{ author.profile.summary }} Author Articles {% if user == author %} Write Article Manage {% endif %} {% for article in author.article_set.all %} {{ article.title }} {{ article.created }} {% endfor %} {% include 'articles/inc/_footer.html' %} {% endblock content %}
{{ article.title }}