always include ticket number and modules in export (#86489) #16

Merged
lguerin merged 1 commits from wip/86489-issue-number-in-export into main 2024-02-13 16:09:42 +01:00
1 changed files with 1 additions and 1 deletions

View File

@ -12,7 +12,7 @@
{% endif %}
<ul>
{% for issue in sub_issues %}
<li>{% if issue.info.wording %}{{ issue.info.wording }}{% else %}{{ issue.subject }} (<a href="{{ issue.url }}">#{{ issue.id }}</a>) [&nbsp;{% for module in issue.modules.keys %}{{ module }}{% if not forloop.last %},&nbsp;{% endif %}{% endfor %}&nbsp;]{% endif %}</li>
<li>{% if issue.info.wording %}{{ issue.info.wording }}{% else %}{{ issue.subject }}{% endif %} (<a href="{{ issue.url }}">#{{ issue.id }}</a>) [&nbsp;{% for module in issue.modules.keys %}{{ module }}{% if not forloop.last %},&nbsp;{% endif %}{% endfor %}&nbsp;]</li>
{% endfor %}
</ul>
{% endif %}