{% extends 'base.html' %} {% load traduction_tags %} {% block title %}{{ article.title }} - {{ settings.site_name }}{% endblock %} {% block meta_description %}{{ article.get_meta_description }}{% endblock %} {% block content %} {% include 'components/breadcrumb.html' with page_title="Actualites" page_subtitle=article.title parent_url="actualite:list" parent_title="Actualites" %}
{% if article.category %} {{ article.category.name }} {% endif %}

{{ article.title }}

{{ article.publication_date|date:"d F Y" }}
{% if article.author %}
{{ article.author.full_name }}
{% endif %}
{{ article.view_count }} vue{{ article.view_count|pluralize }}
{% if article.image %}
{{ article.title }} {% if article.image_caption %}
{{ article.image_caption }}
{% endif %}
{% endif %}
{{ article.content|safe }}
{% if article.related_projects.exists %}

Projets associes

{% for project in article.related_projects.all %} {{ project.title }} {% endfor %}
{% endif %} {% if article.related_people.exists %} {% endif %}

Partager

{% if related_articles %}

Articles similaires

{% endif %} {% endblock %}