django-rest-framework/rest_framework/templates/rest_framework
Tanner Hobson fe4c4fa751 Fix indentation regression in API listing (#4493)
In commit 5392be4ddb, there was a change
made when cleaning up the template for the API listing that caused 2
spaces to appear before every header item (except the first) and before
the first line of the body of the response. This meant that it often
looked like:

HTTP 200 OK
  Allow: GET, OPTIONS
  Content-Type: application/json
  Vary: Accept

  {
    "key": "value",
    "key2": "value2"
}

This change removes those leading spaces, so that it will now look like:

HTTP 200 OK
Allow: GET, OPTIONS
Content-Type: application/json
Vary: Accept

{
    "key": "value",
    "key2": "value2"
}
2016-09-17 03:09:49 +01:00
..
admin Spring cleaning template styles (#4124) 2016-05-16 09:27:10 +01:00
filters Translations for HTML filters 2015-08-28 14:55:22 +01:00
horizontal Resolve form display with ChoiceField, MultipleChoiceField and non-string choices. (#4374) 2016-08-10 12:02:33 +01:00
inline Resolve form display with ChoiceField, MultipleChoiceField and non-string choices. (#4374) 2016-08-10 12:02:33 +01:00
pagination Consistent 2 space tabbing and formatting 2015-06-18 09:00:05 -04:00
vertical Fix template syntax error for as_list_of_strings (#4403) 2016-08-15 09:28:46 +01:00
admin.html Add missing comma (#4473) 2016-09-08 14:01:26 +01:00
api.html Change package name: djangorestframework -> rest_framework 2012-09-20 13:06:27 +01:00
base.html Fix indentation regression in API listing (#4493) 2016-09-17 03:09:49 +01:00
login_base.html Login form autofocus 2015-11-11 10:51:20 +01:00
login.html extend base login template 2013-04-17 10:15:02 -04:00
raw_data_form.html Change serializer field help_text rendering in browsable api (#3812) 2016-06-02 15:21:57 +01:00