diff --git a/rest_framework/templates/rest_framework/base.html b/rest_framework/templates/rest_framework/base.html
index 5b489ee1a..20127edb5 100644
--- a/rest_framework/templates/rest_framework/base.html
+++ b/rest_framework/templates/rest_framework/base.html
@@ -76,6 +76,7 @@
{% block content %}
+ {% block request_forms %}
{% if 'GET' in allowed_methods %}
+ {% block main_content %}
@@ -176,8 +179,10 @@
{{ content|urlize_quoted_links }}{% endautoescape %}
+ {% endblock %}
+ {% block edit_forms %}
{% if display_edit_forms %}
{% if post_form or raw_data_post_form %}
@@ -273,6 +278,7 @@
{% endif %}
{% endif %}
+ {% endblock edit_forms %}
{% endblock content %}