{% load i18n %}

{% trans 'Related Content' %} {% if self.instance.related_with_scores %} {% for content in self.instance.related_with_scores|slice:":20" %} {% endfor %}
{% trans 'Title' %} {% trans 'Score' %}
{% blocktrans with title_str=content.0 %}{{ title_str }}{% endblocktrans %} {{ content.1|floatformat:"7" }}
{% else %}

{% trans 'This page does not yet have any related content.' %}

{% endif %}