Rename: templatetags/{sealed_dates => date_ext}.py

This commit is contained in:
Adeodato Simó 2023-11-09 13:06:48 -03:00
parent 2bb7652dfe
commit c120fa8c87
No known key found for this signature in database
GPG key ID: CDF447845F1A986F
2 changed files with 2 additions and 2 deletions

View file

@ -1,7 +1,7 @@
{% spaceless %} {% spaceless %}
{% load i18n %} {% load i18n %}
{% load sealed_dates %} {% load date_ext %}
{% firstof book.physical_format_detail book.get_physical_format_display as format %} {% firstof book.physical_format_detail book.get_physical_format_display as format %}
{% firstof book.physical_format book.physical_format_detail as format_property %} {% firstof book.physical_format book.physical_format_detail as format_property %}

View file

@ -1,4 +1,4 @@
""" formatting of SealedDate instances """ """ additional formatting of dates """
from django import template from django import template
from django.template import defaultfilters from django.template import defaultfilters
from django.contrib.humanize.templatetags.humanize import naturalday from django.contrib.humanize.templatetags.humanize import naturalday