File tree Expand file tree Collapse file tree 2 files changed +10
-10
lines changed
dojo/templates/issue-trackers/jira_full Expand file tree Collapse file tree 2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 72
72
{% endif %}
73
73
74
74
*Description*:
75
- { { finding.description } }
75
+ { { finding.description|safe } }
76
76
77
77
{% if finding.mitigation %}
78
78
*Mitigation*:
79
- { { finding.mitigation } }
79
+ { { finding.mitigation|safe } }
80
80
{% endif %}
81
81
82
- {% if finding.impact %}
82
+ {% if finding.impact|safe %}
83
83
*Impact*:
84
84
{ { finding.impact } }
85
85
{% endif %}
86
86
87
87
{% if finding.steps_to_reproduce %}
88
88
*Steps to reproduce*:
89
- { { finding.steps_to_reproduce } }
89
+ { { finding.steps_to_reproduce|safe } }
90
90
{% endif %}
91
91
92
92
{% if finding.references %}
93
93
*References*:
94
- { { finding.references } }
94
+ { { finding.references|safe } }
95
95
{% endif %}
96
96
97
97
*Reporter:* [{ { finding.reporter|full_name} } ({ { finding.reporter.email } })|mailto:{ { finding.reporter.email } }]
Original file line number Diff line number Diff line change @@ -66,26 +66,26 @@ h3. [{{ finding.title|jiraencode}}|{{ finding_url|full_url }}]
66
66
{% endif %}
67
67
68
68
*Description*:
69
- { { finding.description } }
69
+ { { finding.description|safe } }
70
70
71
71
{% if finding.mitigation %}
72
72
*Mitigation*:
73
- { { finding.mitigation } }
73
+ { { finding.mitigation|safe } }
74
74
{% endif %}
75
75
76
76
{% if finding.impact %}
77
77
*Impact*:
78
- { { finding.impact } }
78
+ { { finding.impact|safe } }
79
79
{% endif %}
80
80
81
81
{% if finding.steps_to_reproduce %}
82
82
*Steps to reproduce*:
83
- { { finding.steps_to_reproduce } }
83
+ { { finding.steps_to_reproduce|safe } }
84
84
{% endif %}
85
85
86
86
{% if finding.references %}
87
87
*References*:
88
- { { finding.references } }
88
+ { { finding.references|safe } }
89
89
{% endif %}
90
90
91
91
*Reporter:* [{ { finding.reporter|full_name} } ({ { finding.reporter.email } })|mailto:{ { finding.reporter.email } }]
You can’t perform that action at this time.
0 commit comments