{% extends "base.html" %}
{% from "includes/common_macros.html" import for_contributors_sidebar %}
{% from "dashboards/includes/macros.html" import product_selector %}
{% set title = readout.title %}
{% set scripts = ('wiki', 'wiki.dashboard') %}
{% set crumbs = [(url(main_dash_view), main_dash_title), (None, title)] %}
{# TODO: Move required dashboard scripts out of wiki.js into their own #}
{% block content %}
{{ readout.title }}
{{ product_selector(products, product) }}
{% for key, name in readout.modes %}
-
{{ name }}
{% endfor %}
{{ readout.render()|safe }}
{% endblock %}
{% block side_top %}
{{ for_contributors_sidebar(user, settings.WIKI_DEFAULT_LANGUAGE, active='kbdashboard') }}
{% endblock %}