{% extends "base.html" %} {% block title %}artifacts — gest{% endblock %} {% block nav_artifacts %}class="active"{% endblock %} {% block content %}
Artifacts
{{ artifacts.len() }} artifact{% if artifacts.len() != 1 %}s{% endif %}
{% if artifacts.is_empty() %}

No artifacts found.

{% else %}
gest artifact list
{% for a in artifacts %} {% endfor %}
ID Title Kind Tags
{{ a.id.short() }}{{ a.id.to_string()[8..] }} {{ 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 %}