{% extends "base.html" %} {% block title %}{{ plan_file.name }} - {{ project.name }} - flanner{% endblock %} {% block content %}
{{ version.created_by }} {{ version.created_at|relative_time if version.created_at }} {% if version.notes %} {{ version.notes[:50] }}{% if version.notes|length > 50 %}...{% endif %} {% endif %}
frontmatter
---
{% for key, value in frontmatter.items() %}{{ key }}: {{ value }}
{% endfor %}---
{% if linear_links %}

Linked Linear issues

{% for link in linear_links %}
{% if link.url %} {{ link.issue_id }} {% else %} {{ link.issue_id }} {% endif %} {{ link.state or 'not synced' }} {% if link.title %}{{ link.title }}{% endif %} {% if link.notes %}{{ link.notes }}{% endif %}
{% endfor %}
{% endif %}
{% if render_capped %}
This plan is {{ "{:,}".format(content_chars) }} characters, past the 1,000,000-character rendering limit, so it is shown as plain text.
{{ content }}
{% else %}
{{ content_html|safe }}
{% endif %}
File Location: {{ version.file_path }}
{% endblock %}