{% extends "base.html" %} {% block title %}artifacts — gest{% endblock %} {% block nav_artifacts %}class="active"{% endblock %} {% block content %}

Artifacts

{% if current_status == "open" %} {{ open_count }} open {% else %} {{ open_count }} open {% endif %} · {% if current_status == "archived" %} {{ archived_count }} archived {% else %} {{ archived_count }} archived {% endif %} · + new
{% if artifacts.is_empty() %}

No artifacts found.

{% else %}
gest artifact list
{% for a in artifacts %} {% endfor %}
ID Title Type Tags
{{ a.id.short() }} {{ a.title }} {% match a.kind %}{% when Some with (k) %}{{ k }}{% when None %}{% endmatch %} {% for t in a.tags %}#{{ t }}{% if !loop.last %} {% endif %}{% endfor %} {% if a.archived_at.is_some() %}[archived]{% endif %}
{% endif %} {% endblock %}