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

Overview of (almost all) major browsers

Underlying data can be found and improved on github.

{% for id,b in browsers.items() %} {% endfor %}
Name Vendor Latest Version Insecure below Engine Updates
{{ b.name }} {{ b.vendor }} {{ browserdata.current.desktop[id] }} {{ browserdata.insecure_below[id] }} {{ b.engine }} {{ b.updates }}
{% for id,b in browsers.items() %}

{{ b.name }}

Vendor: {{ b.vendor }} {% if b.vendor_non_profit %} (Non-profit Organization) {% endif %}

Price: {% if not b.price %} Free {% endif %}

License: {% if b.license == "full open source" %} fully open source {% else %} only core is open source {% endif %}

Updates: {{ b.updates }}

Latest version: {{ browserdata.current.desktop[id] }}

Engine: {{ b.engine }}, {% if b.core %} Core: {{ b.core }}{% endif %}

First release: {{ b.first_release }}

{% if b.download_url %}Download Link{% endif %}

Information: {% if b.releases %}Releases{% endif %} {% if b.blog %}Developer Blog{% endif %} {% if b.requirements %}System requirements{% endif %} {% if b.lifecycle %}lifecycle{% endif %}

Information for web developers: {% if b.dev_docs %}Information for Webdevelopers{% endif %} {% if b.ua_string_doc %}Documentation of user agent string{% endif %}

Security: {% if b.cve %}CVE{% endif %} {% if b.security_bulletins %}Security Bulletins{% endif %} {% if browserdata.insecure_below[id] %}Insecure below version {{ browserdata.insecure_below[id] }}{% endif %}

{% if b.example_ua_string %}

Example user agent string: {{ b.example_ua_string }}

{% endif %} {% if b.successor %}

Browser is discontinued. Successor is {{ browsers[b.successor].name }}

{% endif %} {% endfor %} {% endblock %}