{% extends "base.html" %} {% import "macros.html" as m %} {% block title %}Workbench - {{ pack.pack }}{% endblock %} {% block content %}

Curation workbench

{% if curation_error %}

curation.yaml does not validate, so this pack is read-only until the file is fixed by hand: {{ curation_error }}

{% endif %} {% if missing_publishers %}

No publisher is named for {{ missing_publishers | join(', ') }}. The build stops on a cited host without a publisher; add it in the pack form.

{% endif %}
{% if form == 'pack' %}{% include "workbench/pack.html" %} {% elif form == 'topic' %}{% include "workbench/topic.html" %} {% elif form == 'concept' %}{% include "workbench/concept.html" %} {% elif form == 'fact' %}{% include "workbench/fact.html" %} {% endif %}
{% endblock %}