blob: 2119a687b0c9a6dcf1212b0c747d7ab1ec681ec7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends 'base.html' %}
{% block content %}
<div class="news">
{% for news in news_list %}
<div class="news_head">
<h2><a href="{% url news-details pk=news.id %}">{{ news.title }}</a></h2>
<!--div style="float:right"><a href="/home/edit/id/<?=$news['ident']?>">Modifier cette actualité</a></div-->
<p>Posté par <a href="/user/view/name/<?=$news['name']?>">{{ news.author.username }}</a> le {{ news.date }}</p>
</div>
<p class="comments">{% with news.comment__count as comment_count %}
<a href="{% url news-details pk=news.id %}#comment">{{ comment_count }} commentaire{{comment_count|pluralize}}</a> |
<a href="{% url news-details pk=news.id %}#add">Ajouter un commentaire</a>
</p>{% endwith %}
<div class="news_content">
{{ news.text }}
</div>
{% endfor %}
</div>
<div style="clear:both"/>
{% endblock %}
|