{% extends "styled.html" %} {% block style %} {{super()}} h1 { margin-bottom: 10px; } .url a { color: #444; } th { text-align: left; } .qmarks .name { padding-left: 5px; } .empty-msg { background-color: #f8f8f8; color: #444; display: inline-block; text-align: center; width: 100%; } details { margin-top: 20px; } {% endblock %} {% block content %}

Tab list

{% for win_id, tabs in tab_list_by_window.items() %}

Window {{ win_id }}

{% for name, url in tabs %} {% endfor %}
{{name}} {{url}}
{% endfor %}
Raw list {% for win_id, tabs in tab_list_by_window.items() %}{% for name, url in tabs %} {{url}}
{% endfor %} {% endfor %}
{% endblock %}