aboutsummaryrefslogtreecommitdiffstats
path: root/docs/topics/browsable-api.md
AgeCommit message (Collapse)Author
2014-11-26Update notes on autocompleteTom Christie
2014-08-18Merge pull request #1641 from javins/login-titleTom Christie
Refactor login template to extend base.
2014-08-07Updated links to Bootstrap componentsKevin London
The previous links landed on the the main page and no longer directly linked to specific areas.
2014-06-13Refactor login template to extend base.Walt Javins
While experimenting with extending DRF, I found that the login page 1) had no title, and 2) duplicated <head> info from base.html. This change adds a new {% block body %} to the base.html template which allows override of the entire html <body>. login_base.html has its duplicated head info stripped, and now extends base.html to share common html <head> templating. As part of this change, pretify.css is unnecessarily added to login_base.html. If this is deemed a problem, it will be easy to block that css out, and have login_base.html override the block. Ideally, I would have liked to create a new api_base.html that extends base.html, move the api specific logic into that template, and leave base.html content agnostic, to truely be a unifying base for all DRF pages. But this change would break current apps that override api.html and expect base.html to be the immediate super template. :/ This change is benificial because it: - removes duplication of header declarations (mostly css includes) - adds a html title to the login page - standardizes html header info across all DRF pages Docs are updated to reflect the new structure.
2013-09-14Refs #1109 -- Update docs. Integrate changes from feedback.Tai Lee
2013-07-30Wrong name of the login_base html file.leandersikma
Changed rest_framework/base_login.html to rest_framework/login_base.html (which is the correct name the user should extends in their templates).
2013-07-23added script block to list of blocksSteve
Phew, was afraid I wouldn't be able to overwrite this section..
2013-07-09Add screenshot, and tweak docsTom Christie
2013-07-07Add info about autocomplete widgets for browsable APISebastien Beal
2013-07-03Improve browsable API docs including theme screenshotsTom Christie
2013-05-28Fix md formatting and typosStephan Groß
2013-05-18documentation for ↵Mark McArdle
https://github.com/tomchristie/django-rest-framework/issues/775
2013-04-17Update browsable-api.mdMatt Majewski
Add login template docs
2013-02-06Fix mismatch between template blocks and docs.Tom Christie
Fixes #639.
2012-10-14Work on docsTom Christie
2012-10-13Docs tweaksTom Christie
2012-09-20Change package name: djangorestframework -> rest_frameworkTom Christie
2012-09-09Whoops, forgot to explain these.Alec Perkins
2012-09-09Reference-style links. Much cleaner.Alec Perkins
2012-09-09Browsable API doc topicAlec Perkins