{% extends "demonstration/inheritance/base.html" %} {% load i18n %} {# The i18n tag enables template tags for internationalization #} {% block title %}{% translate "Inherited page" %}{{ block.super }}{% endblock title %} {% block body %}
{% translate "First string for translation." %}
{% blocktranslate %}Second string with placeholder: {{ value }}{% endblocktranslate %}
{% endblock body %}