mirror of
https://github.com/encode/django-rest-framework.git
synced 2026-02-18 13:10:35 +03:00
13 lines
343 B
HTML
13 lines
343 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block scripts %}
|
|
{{ super() }}
|
|
<script>
|
|
document$.subscribe(function() {
|
|
document.querySelectorAll('pre code').forEach(code => {
|
|
code.parentElement.classList.add('prettyprint', 'well');
|
|
});
|
|
prettyPrint();
|
|
});
|
|
</script>
|
|
{% endblock %} |