{% if show_source|default:False and article.source %}
{% trans "Source:" %}{{ article.source|urlize }}
{% endif %}
{% trans "Released:" %}{{ article.release_dt|date:"long" }}
{% if article.first_name or article.last_name or article.phone or article.fax or article.email or article.website %}
{% if article.first_name or article.last_name %}
{% trans "Author:" %}{{ article.first_name }} {{ article.last_name }}
{% endif %}
{% if article.phone %}
{% trans "Phone:" %}{{ article.phone|phonenumber }}
{% endif %}
{% if article.fax %}
{% trans "Fax:" %}{{ article.fax }}
{% endif %}
{% if article.email %}
{% trans "Email:" %}{{ article.email|obfuscate_email }}
{% endif %}
{% if article.website %}
{% trans "Website:" %}{{ article.website|urlize }}
{% endif %}
{% endif %}
{% with article.category_set as article_cat %}
{% if article_cat.category %}