{% extends "base.html" %} {% block title %}{% if mode == 'edit' %}{{ t("form.edit_item") }}{% else %}{{ t("form.create_item") }}{% endif %} — IssueDeck{% endblock %} {% block content %}
{# ── Page header ── #}
{{ t("common.back") }}

{% if mode == 'edit' %}{{ t("form.edit_item") }}{% else %}{{ t("form.create_item") }}{% endif %}

{# ── Form card ── #}
{# ── Kind selector (create only) ── #} {% if mode == 'create' %}
{% endif %} {# ── Title ── #}
{# ── Body with Markdown preview ── #}
{# Tab bar #}
{# Edit textarea #}
{# Preview panel #}

{{ t("form.body_help") }}

{# ── Tags ── #}

{{ t("form.tags_help") }}

{# External links #}

{{ t("form.external_links_help") }}

{# ── Branches (checkboxes) ── #} {% if project.branches %}
{% for branch in project.branches %} {% endfor %}
{% endif %} {# ── Status (edit only) ── #} {% if mode == 'edit' %}

{{ t("form.done_requires_ship") }}

{% endif %} {# ── Form actions ── #}
{{ t("common.cancel") }}
{% endblock %}