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