From a84b106a3b94059864053ffa8e42c1d1ee4eaf71 Mon Sep 17 00:00:00 2001 From: Bruno Oliveira Date: Wed, 5 Jul 2017 21:16:30 -0300 Subject: [PATCH] Add issue links to changelog template --- changelog/_template.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/changelog/_template.rst b/changelog/_template.rst index 66fd6ae..effbef8 100644 --- a/changelog/_template.rst +++ b/changelog/_template.rst @@ -6,14 +6,14 @@ {% endif %} {% if sections[section] %} -{% for category, val in definitions.items() if category in sections[section] and category != 'trivial' %} +{% for category, val in definitions.items() if category in sections[section] %} {{ definitions[category]['name'] }} {{ underline * definitions[category]['name']|length }} {% if definitions[category]['showcontent'] %} {% for text, values in sections[section][category]|dictsort(by='value') %} -- {{ text }}{% if category != 'vendor' %} ({{ values|sort|join(', ') }}){% endif %} +- {{ text }}{% if category != 'vendor' %} (`{{ values[0] }} `_){% endif %} {% endfor %}