{% load i18n %}
{% trans "Title" %} | Résultats | {% trans "Updated" %} | Péremption |
---|---|---|---|
{{ fp|capfirst }} |
{{ submissions.count }} réponse{{ submissions.count|pluralize }} |
{% if last_submit_time %}
{% blocktrans with time_period=last_submit_time|timesince %}{{ time_period }} ago{% endblocktrans %}
{% else %}
jamais
{% endif %}
|
{% with peremption=fp.specific.peremption %}
{% now "Ymd" as today %}
{% if peremption|date:"Ymd" > today %}
dans {{ peremption|timeuntil }}
{% else %}
{% blocktrans with time_period=peremption|timesince %}{{ time_period }} ago{% endblocktrans %}
{% endif %}
{% endwith %}
|