Skip to content

Commit

Permalink
#4159 column now displays text when empty
Browse files Browse the repository at this point in the history
  • Loading branch information
ajrbyers authored and mauromsl committed May 23, 2024
1 parent 6160778 commit 4f59ca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/templates/admin/copyediting/copyediting.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ <h2>Articles in Copyediting</h2>
<td>{{ article.section.name }}</td>
<td>{% if article.projected_issue %}{{ article.projected_issue.display_title }}{% else %}None{% endif %}</td>
<td>{{ article.stage }}</td>
<td>{% for assignment in article.copyeditassignment_set.all %}<a href="{% url 'editor_review' article.pk assignment.pk %}">{{ assignment.copyeditor.full_name }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}</td>
<td>{% for assignment in article.copyeditassignment_set.all %}<a href="{% url 'editor_review' article.pk assignment.pk %}">{{ assignment.copyeditor.full_name }}</a>{% if not forloop.last %}, {% endif %}{% empty %}No assignments{% endfor %}</td>
</tr>
{% empty %}
<tr>
Expand Down

0 comments on commit 4f59ca7

Please sign in to comment.