{% extends "base.html" %} {% import "_empty.html" as empty %} {% block title %}Issue trackers{% endblock %} {% block topbar_main %}

Issue trackers

Issue trackers a plan can be linked to{% if not integrations_on %} · coming later{% endif %} {% endblock %} {% block content %}
{# Reachable with the feature off, and honest about it. Everything below still renders, so what is coming is visible rather than described. #} {% if not integrations_on %} {% call empty.state('clear', 'Not yet') %}

Linking a plan to a Linear or Jira issue is built, and not supported yet. It is the least exercised part of flanner and it is not what flanner is for, so it is switched off rather than half-promised.

What it would look like is below. Nothing on this page is connected while this notice is here.

{% endcall %} {% endif %}

Linear

{{ 'configured' if linear_config else 'not configured' }}
{% if linear_config %}
Workspace {{ linear_config.workspace }}
{% endif %}

Set up with flanner linear config PROJECT --workspace acme. With LINEAR_API_KEY set, linking verifies the issue exists and caches its title; without one it stays link-only. The key is read from the environment and never stored on disk.

JIRA

Link-only. Set up with flanner jira config.

{% if linear_links %}
Linked plans {{ linear_links | length }}
{% for link in linear_links %} {% endfor %}
{% endif %}
{% endblock %}