{% macro category_title() -%}
 {% if categories %}
  
  {% trans categories=categories %}
   Category:
  {% pluralize categories %}
   Categories:
  {% endtrans %}
  {% for c in categories %}
    {{ c|e }}
  {% endfor %}
 {% endif %}
 {% if branch != ANYBRANCH %}
  
Branch: {{ branch|e or "trunk" }}
 {% endif %}
{%- endmacro %}
{% macro stamp_td(sourcestamps) -%}