templates/default_light/tag.html
{% extends "base.html" %}
{% block tab_tags_selected -%}selected{% endblock -%}
{% block content %}
tag: {{tag.ref_name}}
hash: {{tag.full_hash}}
tagged commit: {% if tag.tagged_id -%}{% if tag.tagged_id in commit_ids -%} {{tag.tagged_id}} {% else -%}{{tag.tagged_id}}{% endif -%}{% endif -%}
author: {{tag.author.name}} <{{tag.author.email}}>
date: {{ts_to_git_timestamp(ts=tag.ts_utc, tz=tag.ts_offset)}}
{{tag.message}}
{% endblock content %}