{% extends "base.html" %} {% from "fragments/_chips.html" import chip %} {% block title %}Voxint โ€” {{ detail.name }}{% endblock %} {% block cb_breadcrumb %}projects / {{ detail.name }}{% endblock %} {% block cb_summary %}{{ chip("active") }}{% endblock %} {% block cb_actions %}
Rename
{% endblock %} {% block body %} {% if error %}{% endif %} {# The fields this project actually overrides, named so the supersede copy never claims blanket replacement when only one field is set (ADR 0002 per-field). #} {% set own_fields %}{% if detail.has_own_vocabulary and detail.has_own_corrections %}vocabulary and corrections{% elif detail.has_own_vocabulary %}vocabulary{% elif detail.has_own_corrections %}corrections{% endif %}{% endset %} {% if assigned %}

Assigned {{ assigned.path }} to this project. {% if assigned.domain_pack %} {% if detail.has_own_config %} This project now applies its own {{ own_fields }} instead of the folder's "{{ assigned.domain_pack }}" pack for its recordings; the pack still supplies everything else. {% else %} The folder's "{{ assigned.domain_pack }}" pack keeps applying until this project sets its own vocabulary or corrections. {% endif %} {% endif %}

{% endif %}

VOCABULARY

names and terms Voxint should spell correctly in this project

{% if detail.vocabulary is not none and detail.vocabulary %}
{% for term in detail.vocabulary %} {{ term }} {% endfor %} + add term
{% elif detail.vocabulary is not none %}

No terms (explicitly set to none).

{% else %}

Inheriting from the folder pack or global settings.

{% endif %} {% if vocabulary_error %}{% endif %}
Edit vocabulary
Source

Applies to the next run โ€” finished transcripts don't change.

AUTO-CORRECT RULES

fix a repeated mishearing once, it's fixed everywhere

{% if corrections_error %}{% endif %}
{% if detail.corrections %}
HEARD REPLACE WITH SOURCE
{% for rule in detail.corrections %}
{{ rule.match }} โ†’ {{ rule.replace }} manual
{% endfor %}
{% elif detail.corrections is not none %}

No correction rules (explicitly none).

{% else %}

Inheriting from the folder pack or global corrections.

{% endif %}
{% if detail.corrections is not none %}
{% endif %}
{% endblock %}