{% extends 'layouts/base.html' %} {% load static %} {% block title %}Detalhes da Notícia{% endblock title %} {% block extrastyle %} {% endblock extrastyle %} {% block content %}

{{ news.title }}

{% if news.image %} {{ news.title }} {% endif %}
{{ news.content|safe }}
Autor: {{ news.author.username }} | Data de Publicação: {{ news.pub_date }}
{% endblock content %} {% block extra_js %} {% endblock extra_js %}