{% extends "base.html" %}{% load i18n %} {% block content %}

{% trans "Request details" %}

{% trans "These are headers you are sending to the site. Formats are inferred from your Accept header." %}

{% trans "User-Agent" %} {{ ua }}
{% trans "Accept" %} {{ accept }}
{% trans "Formats" %} {{ formats|join:", " }}

{% trans "Device details" %}

{% trans "These details relate to the device the site believes that you are using." %}

{# Translators: Matched User-Agent #}
{% trans "Matched device" %} {{ brand_name }} {{ model_name }}
{% trans "Matched UA" %} {{ matched_ua }}
{% trans "Device identifier" %} {{ id }}
{% trans "Mobile?" %} {{ is_mobile|yesno|capfirst }}
{% endblock %}