{% extends 'changelog/master.twig' %} {% from 'macros.twig' import container_title %} {% from '_layout/comments.twig' import comments_section %} {% set title = 'Changelog ยป Change #' ~ change.change_id %} {% set canonical_url = '/changelog.php?c=' ~ change.change_id %} {% set manage_link = '/manage/changelog.php?v=change&c=' ~ change.change_id %} {% set description = change.change_log %} {% block content %}
{{ change.action_name }}
{{ change.change_log }}
{% if change.user_id is not null %} {% endif %} Created {% if tags|length > 0 %} {% endif %}

{{ title }}

{% if change.change_text|length >= 1 %} {{ change.change_text|parse_text(constant('MSZ_PARSER_MARKDOWN'))|raw }} {% else %}

This change has no additional notes.

{% endif %}
{% if comments is defined %}
{{ container_title('Comments for ' ~ change.change_date) }} {{ comments_section(comments, comments_category, current_user|default(null), comments_perms) }}
{% endif %} {% endblock %}