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

Notícias

Fique por dentro das últimas novidades e atualizações exclusivas.

{% if user.is_authenticated %}
{% if private_news_list %} {% for news in private_news_list %}
{% if news.image %} {{ news.title }} {% endif %}

{{ news.title }}

{{ news.summary }}

Autor: {{ news.author.username }} | Data: {{ news.pub_date }}

Leia mais
{% endfor %} {% else %}

Não há notícias privadas disponíveis no momento.

{% endif %}
{% endif %} {% endblock content %} {% block extra_js %} {% endblock extra_js %}