{% extends "layouts/docs_app.html" %} {% block app_content %}

Local authoring

Author dashboard

Import, freshness, and lint status for this local docs workspace.

JSON
Mounts {{ author_dashboard.summary.mount_count }}
Pages {{ author_dashboard.summary.page_count }}
Dirty or stale {{ author_dashboard.summary.freshness_count }}
Blocking errors {{ author_dashboard.summary.error_count }}
{% if author_dashboard.blocking %}

Needs attention

Top blocking errors

{% for item in author_dashboard.blocking %}
{{ item.source_path }}{% if item.line %}:{{ item.line }}{% end %} {{ item.message }}
{% if item.studio_url %} Open {% end %}
{% end %}
{% end %}
{% for mount in author_dashboard.mounts %}

{{ mount.provider }}

{{ mount.label }}

{{ mount.source_root }}
{{ mount.status }}
Pages
{{ mount.page_count }}
Lint
{{ mount.error_count }} error{% if mount.error_count != 1 %}s{% end %} / {{ mount.warning_count }} warning{% if mount.warning_count != 1 %}s{% end %}
Freshness
{{ mount.dirty_count }} dirty / {{ mount.stale_count }} stale
{% for item in mount.formats %} {{ item.format }} {{ item.count }} {% end %}
{% if mount.diagnostics %}
Diagnostics
{% for item in mount.diagnostics %}
{{ item.source_path }}{% if item.line %}:{{ item.line }}{% end %} {{ item.message }}
{% if item.studio_url %} Open {% end %}
{% end %}
{% end %}
{% end %}
{% end %}