{% extends "base.html" %} {% block title %}artifacts — gest{% endblock %} {% block nav_artifacts %}class="active"{% endblock %} {% block content %}
No artifacts found.
{% else %}| 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 %} |