{% extends 'base.html' %} {% block content %} {% from '_helpers.html' import render_field, render_checkbox_field, render_button %}
{{ _('Create named profiles to configure browser settings — viewport size, connection URL, image/font blocking, and more. Each profile is based on an available browser type.') }}
{% if browser_profiles %}| {{ _('Default') }} | {{ _('Name') }} | {{ _('Type') }} | {{ _('Viewport') }} | {{ _('Options') }} | ||
|---|---|---|---|---|---|---|
| {{ profile.name }} | {{ profile.fetch_backend }} |
{{ profile.get_fetcher_class_name()|fetcher_status_icons }} | {{ profile.viewport_width }}×{{ profile.viewport_height }} |
{% if profile.block_images %}{{ _('No images') }} {% endif %} {% if profile.block_fonts %}{{ _('No fonts') }} {% endif %} {% if profile.ignore_https_errors %}{{ _('Ignore TLS') }} {% endif %} {% if profile.browser_connection_url %}{{ _('Custom URL') }}{% endif %} |
{% if not profile.is_builtin %} {{ _('Edit') }} {{ _('Delete') }} {% endif %} |
{{ _('No browser profiles configured yet. Add one below.') }}
{% endif %}{{ _('Choose a browser type, give it a name, and configure its settings. You can create multiple profiles from the same type with different connection URLs or options.') }}
{% endif %}