{% extends "dictionary/base.html" %}
{% load filters functions i18n %}
{% block title %}{% trans "user" %}: {{ profile.username }}{% if tab.name != "latest" %} - {{ tab.label }}{% endif %}{% if page_obj.number > 1 %} - {% trans "page" %} {{ page_obj.number }}{% endif %}{% endblock %}
{% block bodyclass %} has-entries{% endblock %}
{% block bodyattr %}{% if user.is_authenticated and user.pinned_entry_id %} data-pin="{{ user.pinned_entry_id }}"{% endif %}{% endblock %}
{% block content %}
{% load humanize %}
{% with object_count=page_obj.paginator.count %}
{{ tab.label }}{% if object_count %} ({{ object_count }}){% endif %}
{% if page_obj.number > 1 %}
- {% trans "page" %} {{ page_obj.number }}
{% endif %}
{% if tab.type == "entry" %}
{% endif %}
{% for entry in object_list %}
{% include "dictionary/includes/entry.html" with show_title="yes" %}
{% endfor %}