{{ now().timestamp()|timestamp_custom('%d')|format(morph='первого') }} ==> восемь первых
{{ now().timestamp()|timestamp_custom('%d')|format(morph='первого', as_ordinal=True) }} ==> TypeError: '>=' not supported between instances of 'str' and 'int'
Проблема в том, что timestamp_custom по умолчанию во float, если явно задать int, то работает
{{ now().timestamp()|timestamp_custom('%d')|int|format(morph='первого', as_ordinal=True) }} ==> восьмого
Подскажите, можно текущую дату склонять? хочу получить ВОСЬМОГО ноября
{{ now().timestamp()|timestamp_custom('%d') }} ==> 08
{{ now().timestamp()|timestamp_custom('%d')|format(morph='первого') }} ==> восемь первых
{{ now().timestamp()|timestamp_custom('%d')|format(morph='первого', as_ordinal=True) }} ==> TypeError: '>=' not supported between instances of 'str' and 'int'