moviewyrm/bookwyrm/templates/snippets/page_text.html

8 lines
284 B
HTML
Raw Normal View History

2021-04-02 03:22:42 +00:00
{% load humanize %}
{% load i18n %}
{% if total_pages %}
{% blocktrans with page=page|intcomma total_pages=total_pages|intcomma %}page {{ page }} of {{ total_pages }}{% endblocktrans %}
{% else %}
{% blocktrans with page=page|intcomma %}page {{ page }}{% endblocktrans %}
{% endif %}