aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/browsable-api.md
diff options
context:
space:
mode:
authorTom Christie2013-04-30 19:32:34 +0100
committerTom Christie2013-04-30 19:32:34 +0100
commit22af28d146f2c4caccafafc78603ce20ffd76425 (patch)
tree8dbf025ea1efaf257417b4a7c94263f0688c2786 /docs/topics/browsable-api.md
parent7eba12fd28766971a25491a9360aaf0fda684a0f (diff)
parent5d357a9b0807311b97de1e999be588f36fcd5b2f (diff)
downloaddjango-rest-framework-22af28d146f2c4caccafafc78603ce20ffd76425.tar.bz2
Merge master
Diffstat (limited to 'docs/topics/browsable-api.md')
-rw-r--r--docs/topics/browsable-api.md11
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/topics/browsable-api.md b/docs/topics/browsable-api.md
index 5f80c4f9..8ee01824 100644
--- a/docs/topics/browsable-api.md
+++ b/docs/topics/browsable-api.md
@@ -60,6 +60,17 @@ All of the [Bootstrap components][bcomponents] are available.
The browsable API makes use of the Bootstrap tooltips component. Any element with the `js-tooltip` class and a `title` attribute has that title content displayed in a tooltip on hover after a 1000ms delay.
+### Login Template
+
+To add branding and customize the look-and-feel of the auth login template, create a template called `login.html` and add it to your project, eg: `templates/rest_framework/login.html`, that extends the `rest_framework/base_login.html` template.
+
+You can add your site name or branding by including the branding block:
+
+ {% block branding %}
+ <h3 style="margin: 0 0 20px;">My Site Name</h3>
+ {% endblock %}
+
+You can also customize the style by adding the `bootstrap_theme` or `style` block similar to `api.html`.
### Advanced Customization