{% extends 'articles/base.html' %} {% load static %} {% load social_share %} {% load crispy_forms_tags %} {% block meta_tags %} {% endblock meta_tags %} {% block content %}

{{object.title}} {% if request.user == object.author %} {% endif %}

{# TODO: Implement subheading #} {#

{{ object.subheading }}

#} Posted by {% if object.user.name %} {{object.author.name}} {% else %} {{ object.author.username }} {% endif %} at {{object.created}}
{% csrf_token %}

{{ likes.count }}

{# TODO: link to list all who appreciated #} people liked
{{ object.content|safe }}
{% if request.user.is_authenticated %}

Post a Comment

{% csrf_token %} {{ comment_form|crispy }}
{% else %}

Sign in to comment

{% endif %}
{% if user_pending_comments %} {% for comment in user_pending_comments %}
{{ comment.author }}
{{ comment.author }} pending for approval

{{ comment }}

{% endfor %} {% endif %} {% for comment in comments %}
{{ comment.author }}
{{ comment.author }} commented on {{ comment.created }}

{{ comment }}

{% empty %}
No one commented in this article.
{% endfor %}
You may also read
{% for article in object.get_related_articles %}
{{ request_institute.name }}-{{ article.title }}

{{ article.title }}

{% empty %}
No Realated Article Found
{% endfor %}

{% add_pinterest_script %} {% include 'articles/inc/_fixed_actions.html' %} {% include 'articles/inc/_footer.html' %} {% endblock content %} {% block extra_js %} {% endblock extra_js %}