Skip to content

Commit 4a132bd

Browse files
committed
The changes made in this commit include:
- Modified signal_list.html to capitalize the first letter of each pathogen name displayed in the badge.
1 parent 722b78d commit 4a132bd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/templates/signals/signal_list.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ <h5 class="card-title">Signals</h5>
5050
<td>{{ signal.description }}</td>
5151
<td>
5252
{% for pathogen in signal.pathogen.all %}
53-
<span class="badge rounded-pill bg-dark">{{ pathogen }}</span>
53+
<span class="badge rounded-pill bg-dark">{{ pathogen|title }}</span>
5454
{% endfor %}
5555
</td>
5656
<td>

0 commit comments

Comments
 (0)