{% extends "styled.html" %} {% block style %} {{ super() }} th { text-align:left; } .key { width: 25%; } .command { width: 75% } {% endblock %} {% block content %}

{{ title }}

{% for mode, binding in bindings.items() %}

{{ mode | capitalize }} mode

{% for key,command in binding.items() %} {% endfor %}
Key Command

{{ key }}

{{ command }}

{% endfor %} {% endblock %}