Skip to content

Commit

Permalink
Fix placeholders being escaped when linkified
Browse files Browse the repository at this point in the history
  • Loading branch information
Alef-Burzmali committed Jul 20, 2024
1 parent d978b3f commit 713dbe1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ <h5 class="card-header">{% trans "Application" %}</h5>
</tr>
<tr>
<th scope="row">{% trans "Role" %}</th>
<td>{{ object.role|placeholder|linkify }}</td>
<td>{{ object.role|linkify|placeholder }}</td>
</tr>
<tr>
<th scope="row">{% trans "Description" %}</th>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h5 class="card-header">{% trans "Data Flow" %}</h5>
<tr>
<th scope="row">{% trans "Group" %}</th>
<td>
{{ object.group|placeholder|linkify }}
{{ object.group|linkify|placeholder }}
</td>
</tr>
<tr>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ <h5 class="card-header">{% trans "Data Flow Group" %}</h5>
<tr>
<th scope="row">{% trans "Parent" %}</th>
<td>
{{ object.parent|placeholder|linkify }}
{{ object.parent|linkify|placeholder }}
</td>
</tr>
<tr>
Expand Down

0 comments on commit 713dbe1

Please sign in to comment.