Changed grade template logic once again.
[cascardo/eventmanager.git] / templates / noticia.html
1 {% extends "base.html" %}
2 {% block content %}
3
4 <h2>{{ noticia.titulo }}</h2>
5 <em>{{ noticia.data_criacao }} (por {{ noticia.autor }})</em>
6
7 <p>{{ noticia.chamada }}</p>
8 <p>{{ noticia.corpo }}</p>
9
10 <a href="javascript:;" onclick="history.back ();">Voltar</a>
11
12 {% endblock %}