diff options
| author | Tom Christie | 2014-09-01 08:54:58 +0100 |
|---|---|---|
| committer | Tom Christie | 2014-09-01 08:54:58 +0100 |
| commit | f777a73bc7987330c69c18bd37634942a67f4e74 (patch) | |
| tree | 2160484e7e65931d8db2209e1907f61fb2a4d778 | |
| parent | bbc2749ee6a0226ac22852bab377d8564527feef (diff) | |
| parent | b554c67d14fb0464106a247e5da96af80b819be9 (diff) | |
| download | django-rest-framework-f777a73bc7987330c69c18bd37634942a67f4e74.tar.bz2 | |
Merge pull request #1810 from danielroseman/restore-body-block
Restore body block to base template.
| -rw-r--r-- | rest_framework/templates/rest_framework/base.html | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/rest_framework/templates/rest_framework/base.html b/rest_framework/templates/rest_framework/base.html index cee9724d..e54e3814 100644 --- a/rest_framework/templates/rest_framework/base.html +++ b/rest_framework/templates/rest_framework/base.html @@ -25,6 +25,7 @@ {% endblock %} </head> + {% block body %} <body class="{% block bodyclass %}{% endblock %} container"> <div class="wrapper"> @@ -261,4 +262,5 @@ <script src="{% static "rest_framework/js/default.js" %}"></script> {% endblock %} </body> + {% endblock %} </html> |
