Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rest_framework/templates/rest_framework/docs/document.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="col-md-6 intro-title">
<h1>{{ document.title }}</h1>
{% if document.description %}
<p>{% render_markdown document.description %}</p>
<p>{% autoescape off %}{% render_markdown document.description %}{% endautoescape %}</p>
{% endif %}
</div>
<div class="col-md-6 intro-code">
Expand Down
2 changes: 1 addition & 1 deletion rest_framework/templates/rest_framework/docs/interact.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ <h3 class="modal-title"><i class="fa fa-exchange"></i> {{ link.title|default:lin
<div class="modal-body">
<div class="row">
<div class="col-lg-6 request">
{% form_for_link link %}
{% autoescape off %}{% form_for_link link %}{% endautoescape %}
</div>

<hr class="hidden-lg hidden-xl" />
Expand Down