{% extends "base.html" %} {% block title %}doctor · watchmen{% endblock %} {% block content %}
watchmen doctor,
rendered in the browser so you don't have to leave the viewer
to know what's broken.
| Check | Status | Detail | Fix |
|---|---|---|---|
| {{ r.label }} | {% if r.severity == "ok" %}✓ {% elif r.severity == "warn" %}! {% else %}✗ {% endif %} | {{ r.detail }} |
{% if r.fix %}
{# The fix string often embeds backticks; render as code if it has them. #}
{% if "`" in r.fix %}
{% set parts = r.fix.split("`") %}
{% for p in parts %}{% if loop.index0 % 2 == 1 %}{{ p }}{% else %}{{ p }}{% endif %}{% endfor %}
{% else %}
{{ r.fix }}
{% endif %}
{% else %}
·
{% endif %}
|
watchmen doctor