{% extends "base.html" %} {% block title %}{{ t("page.list.title") }} - {{ project.name }} - IssueDeck{% endblock %} {% block content %}

{{ t("page.list.title") }}

{{ items | length }}{% if next_cursor %}+{% endif %} {{ t("common.items_suffix") }}
{{ t("nav.create") }}
{% if bulk_error %}
{{ bulk_error }}
{% elif bulk_count %}
{{ t("bulk.success", count=bulk_count, action=t("bulk.action_" ~ bulk_action)) }}
{% endif %}
{% for k in filter_kind %}{% endfor %} {% for s in filter_status %}{% endfor %} {% for t in filter_tag %}{% endfor %} {% for a in filter_applies_to %}{% endfor %} {% for r in filter_relation_type %}{% endfor %} {% for field_filter in filter_custom_field_query %} {% endfor %} {% if filter_include_deleted %}{% endif %}
{{ t("common.kind") }}
{% for kind_key, kind_cfg in project.kinds.items() %} {% set kc = kind_color(kind_key) %} {% endfor %}
{{ t("common.status") }}
{% for status_key, status_cfg in project.statuses.items() %} {% set sc = status_color(status_key) %} {% endfor %}
{{ t("common.tags") }}
{% if all_tags %} {% for tag in all_tags %} {% endfor %} {% else %}

{{ t("common.no_tags") }}

{% endif %}
{{ t("common.branches") }}
{% if project.branches %} {% for branch in project.branches %} {% endfor %} {% else %}

{{ t("common.no_branches") }}

{% endif %}
{% if project.custom_fields %}
{{ t("custom_fields.filters") }}
{% for field_key, field_cfg in project.custom_fields.items() %} {% set field_controls = filter_custom_field_controls[field_key] %}
{{ field_cfg.label }} {% if field_cfg.type == "select" %} {% elif field_cfg.type == "checkbox" %} {% elif field_cfg.type == "number" %}
{% else %} {% endif %} {% if field_cfg.type in ["text", "url", "number"] %} {% endif %}
{% endfor %}
{% endif %}
{{ t("common.reset") }}
{% if project.branches %}
{% for branch in project.branches %} {% endfor %}
{% endif %}
{% if project.custom_fields %}

{{ t("bulk.custom_fields") }}

{% for field_key, field_cfg in project.custom_fields.items() %} {% endfor %}
{% endif %}
{% include "components/item_list_content.html" %}
{% endblock %}