diff options
| author | José Padilla | 2015-02-01 16:48:22 -0400 |
|---|---|---|
| committer | José Padilla | 2015-02-01 16:48:22 -0400 |
| commit | d6153a7fae2eb2ab8daad5b6cc10f151c9030eae (patch) | |
| tree | 8404cead74012f401f7001dac1a837e02f6f7bd6 /docs/topics | |
| parent | a89e05dc73e2c532372b1f9c51f38100f7f795f6 (diff) | |
| parent | 9437d9b8eef9ef2b0f5f69257c8515416527c5a1 (diff) | |
| download | django-rest-framework-d6153a7fae2eb2ab8daad5b6cc10f151c9030eae.tar.bz2 | |
Merge pull request #2497 from jpadilla/master
Fix base_template examples
Diffstat (limited to 'docs/topics')
| -rw-r--r-- | docs/topics/3.0-announcement.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/3.0-announcement.md b/docs/topics/3.0-announcement.md index 24e69c2d..59fe779c 100644 --- a/docs/topics/3.0-announcement.md +++ b/docs/topics/3.0-announcement.md @@ -826,7 +826,7 @@ The `style` keyword argument can be used to pass through additional information For example, to use a `textarea` control instead of the default `input` control, you would use the following… additional_notes = serializers.CharField( - style={'base_template': 'text_area.html'} + style={'base_template': 'textarea.html'} ) Similarly, to use a radio button control instead of the default `select` control, you would use the following… |
