Projet

Général

Profil

Télécharger (601 octets) Statistiques
| Branche: | Tag: | Révision:

root / corbo / templates / corbo / homepage.html @ f38ae358

1
{% extends 'corbo/base.html' %}
2
{% load i18n %}
3

    
4
{% block content %}
5
<ul class="announces">
6
{% for object in object_list %}
7
<li class="{% cycle 'bright' 'bluesky' %}">
8
  <h2>{{ object.title }}</h2>
9
  <div class="text">
10
    {{ object.text|safe }}
11
  </div>
12
  <div class="pub_time">
13
    {% if object.publication_time %}
14
    {% blocktrans with pub_date=object.publication_time|date:'DATETIME_FORMAT' %}
15
    Published on {{ pub_date }}
16
    {% endblocktrans %}
17
    {% endif %}
18
  </div>
19
  <div class="clear"></div>
20
</li>
21
{% empty %}
22
{% trans "No announces published yet" %}
23
{% endfor %}
24
</ul>
25
{% endblock %}
(6-6/7)