You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

22 lines
603 B

{% load i18n %}
{% load template_filters %}
{% if obj.data_begin|timesince_exp:obj.data_end %}
{{ obj.data_begin|date:"F" }}
{% else %}
{% if obj.data_begin|timesince:obj.data_end < "1 day" %}
{{ obj.data_begin }}
{% else %}
{% if obj.data_end %}
{% trans 'с' %}{% ifnotequal obj.data_begin|date:"F" obj.data_end|date:"F" %} {{ obj.data_begin|date:"j F" }}{% else %} {{ obj.data_begin|date:"j" }}{% endifnotequal %} {% trans 'по' %} {{ obj.data_end }}
{% else %}
{{ obj.data_begin }}
{% endif %}
{% endif %}
{% endif %}