{% extends 'changelog/master.twig' %} {% from 'macros.twig' import container_title, avatar %} {% from '_layout/comments.twig' import comments_section %} {% set title = 'Changelog ยป Change #' ~ change_info.id %} {% set canonical_url = url('changelog-change', {'change': change_info.id}) %} {% set manage_link = url('manage-changelog-change', {'change': change_info.id}) %} {% set description = change_info.summary %} {% block content %}
{{ change_info.actionText }}
{{ change_info.summary }}
{% if change_user_info.id|default(null) is not null %} {% endif %} Created {% if change_tags|length > 0 %} {% endif %}

{{ title }}

{% if change_info.hasBody %} {{ change_info.body|parse_text(2)|raw }} {% else %}

This change has no additional notes.

{% endif %}
{{ container_title(' Comments for ' ~ change_info.date) }} {{ comments_section(comments_info, canonical_url) }}
{% endblock %}