Skip to content

Commit

Permalink
plans/templates/plan_detail: remove whitespace before comma and add a…
Browse files Browse the repository at this point in the history
…fter comma
  • Loading branch information
rine committed Jan 10, 2022
1 parent 0a159da commit d721cd7
Showing 1 changed file with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,11 +63,7 @@ <h1 class="item-detail__title u-break-word">
{% if object.topic_names %}
<dl>
<dt>{% trans 'Topic' %}</dt>
<dd>{{ object.topic_names.0 }}
{% if object.topic_names.1 %}
,{{ object.topic_names.1 }}
{% endif %}
</dd>
<dd>{{ object.topic_names.0 }}{% if object.topic_names.1 %}, {{ object.topic_names.1 }}{% endif %}</dd>
</dl>
{% endif %}

Expand Down

0 comments on commit d721cd7

Please sign in to comment.