{% 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.header %} {% block content %}
{{ change_info.actionString }}
{{ change_info.header }}
{% if change_info.user.id|default(null) is not null %} {% endif %} Created {% if change_info.tags|length > 0 %} {% endif %}

{{ title }}

{% if change_info.hasBody %} {{ change_info.parsedBody|raw }} {% else %}

This change has no additional notes.

{% endif %}
{% if change_info.hasCommentsCategory %}
{{ container_title(' Comments for ' ~ change_info.date) }} {{ comments_section(change_info.commentsCategory, comments_user) }}
{% endif %} {% endblock %}