{% extends "admin/base.html" %}
{% load i18n %}
{% load translations %}
{% block userlinks %}
{% if site_url %}
{% trans 'Return to Weblate' %} /
{% endif %}
{% if user.is_active and user.is_staff %}
{% trans 'Documentation' %} /
{% endif %}
{% if user.has_usable_password %}
{% trans 'Change password' %} /
{% endif %}
{% trans 'Sign out' %}
{% endblock %}