{% extends "base.html" %} {% block title %}{{ artifact.title }} — gest{% endblock %} {% block nav_artifacts %}class="active"{% endblock %} {% block content %}
| title | {{ artifact.title }} |
| kind | {{ k }} |
| tags | {% for t in artifact.tags %}#{{ t }}{% if !loop.last %} {% endif %}{% endfor %} |
| created | {{ artifact.created_at.format("%Y-%m-%d %H:%M") }} |
| updated | {{ artifact.updated_at.format("%Y-%m-%d %H:%M") }} |
| archived | {% match artifact.archived_at %}{% when Some with (dt) %}{{ dt.format("%Y-%m-%d %H:%M") }}{% when None %}{% endmatch %} |