diff options
Diffstat (limited to 'tutorial')
| -rw-r--r-- | tutorial/1-serialization/index.html | 17 | ||||
| -rw-r--r-- | tutorial/2-requests-and-responses/index.html | 17 | ||||
| -rw-r--r-- | tutorial/3-class-based-views/index.html | 17 | ||||
| -rw-r--r-- | tutorial/4-authentication-and-permissions/index.html | 17 | ||||
| -rw-r--r-- | tutorial/5-relationships-and-hyperlinked-apis/index.html | 17 | ||||
| -rw-r--r-- | tutorial/6-viewsets-and-routers/index.html | 21 | ||||
| -rw-r--r-- | tutorial/quickstart/index.html | 15 |
7 files changed, 71 insertions, 50 deletions
diff --git a/tutorial/1-serialization/index.html b/tutorial/1-serialization/index.html index e861ac0a..62bfac52 100644 --- a/tutorial/1-serialization/index.html +++ b/tutorial/1-serialization/index.html @@ -81,14 +81,21 @@ <ul class="nav navbar-nav"> <li ><a href="/">Home</a></li> - <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li > <a href="../quickstart">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li class="active" > <a href=".">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li > - <a href="../6-viewsets-and-routers">6- Viewsets and routers</a> + <a href="../6-viewsets-and-routers">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> diff --git a/tutorial/2-requests-and-responses/index.html b/tutorial/2-requests-and-responses/index.html index aab35769..c32b7cda 100644 --- a/tutorial/2-requests-and-responses/index.html +++ b/tutorial/2-requests-and-responses/index.html @@ -81,14 +81,21 @@ <ul class="nav navbar-nav"> <li ><a href="/">Home</a></li> - <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li > <a href="../quickstart">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li > <a href="../1-serialization">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li > - <a href="../6-viewsets-and-routers">6- Viewsets and routers</a> + <a href="../6-viewsets-and-routers">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> diff --git a/tutorial/3-class-based-views/index.html b/tutorial/3-class-based-views/index.html index 43358478..773d32ed 100644 --- a/tutorial/3-class-based-views/index.html +++ b/tutorial/3-class-based-views/index.html @@ -81,14 +81,21 @@ <ul class="nav navbar-nav"> <li ><a href="/">Home</a></li> - <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li > <a href="../quickstart">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li > <a href="../1-serialization">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li > - <a href="../6-viewsets-and-routers">6- Viewsets and routers</a> + <a href="../6-viewsets-and-routers">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> diff --git a/tutorial/4-authentication-and-permissions/index.html b/tutorial/4-authentication-and-permissions/index.html index 90e2d921..3eeb8c0f 100644 --- a/tutorial/4-authentication-and-permissions/index.html +++ b/tutorial/4-authentication-and-permissions/index.html @@ -81,14 +81,21 @@ <ul class="nav navbar-nav"> <li ><a href="/">Home</a></li> - <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li > <a href="../quickstart">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li > <a href="../1-serialization">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li > - <a href="../6-viewsets-and-routers">6- Viewsets and routers</a> + <a href="../6-viewsets-and-routers">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> diff --git a/tutorial/5-relationships-and-hyperlinked-apis/index.html b/tutorial/5-relationships-and-hyperlinked-apis/index.html index dd39c431..3e616816 100644 --- a/tutorial/5-relationships-and-hyperlinked-apis/index.html +++ b/tutorial/5-relationships-and-hyperlinked-apis/index.html @@ -81,14 +81,21 @@ <ul class="nav navbar-nav"> <li ><a href="/">Home</a></li> - <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li > <a href="../quickstart">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li > <a href="../1-serialization">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li > - <a href="../6-viewsets-and-routers">6- Viewsets and routers</a> + <a href="../6-viewsets-and-routers">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> diff --git a/tutorial/6-viewsets-and-routers/index.html b/tutorial/6-viewsets-and-routers/index.html index d299743f..8c76947a 100644 --- a/tutorial/6-viewsets-and-routers/index.html +++ b/tutorial/6-viewsets-and-routers/index.html @@ -4,11 +4,11 @@ <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta charset="utf-8"> - <title>6- Viewsets and routers - Django REST framework</title> + <title>6 - Viewsets and routers - Django REST framework</title> <link href="../../img/favicon.ico" rel="icon" type="image/x-icon"> <link rel="canonical" href="http://www.django-rest-framework.org/tutorial/6-viewsets-and-routers/" /> <meta name="viewport" content="width=device-width, initial-scale=1.0"> - <meta name="description" content="Django, API, REST, 6- Viewsets and routers"> + <meta name="description" content="Django, API, REST, 6 - Viewsets and routers"> <meta name="author" content="Tom Christie"> <!-- Le styles --> @@ -81,14 +81,21 @@ <ul class="nav navbar-nav"> <li ><a href="/">Home</a></li> - <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li > <a href="../quickstart">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown active"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li > <a href="../1-serialization">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li class="active" > - <a href=".">6- Viewsets and routers</a> + <a href=".">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> diff --git a/tutorial/quickstart/index.html b/tutorial/quickstart/index.html index 0aad281b..d2f73262 100644 --- a/tutorial/quickstart/index.html +++ b/tutorial/quickstart/index.html @@ -82,13 +82,20 @@ <li ><a href="/">Home</a></li> <li class="dropdown active"> - <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Quickstart <b class="caret"></b></a> <ul class="dropdown-menu"> <li class="active" > <a href=".">Quickstart</a> </li> + </ul> + </li> + + <li class="dropdown"> + <a href="#" class="dropdown-toggle" data-toggle="dropdown">Tutorial <b class="caret"></b></a> + <ul class="dropdown-menu"> + <li > <a href="../1-serialization">1 - Serialization</a> </li> @@ -110,7 +117,7 @@ </li> <li > - <a href="../6-viewsets-and-routers">6- Viewsets and routers</a> + <a href="../6-viewsets-and-routers">6 - Viewsets and routers</a> </li> </ul> @@ -165,10 +172,6 @@ </li> <li > - <a href="../../api-guide/validators">Validators</a> - </li> - - <li > <a href="../../api-guide/authentication">Authentication</a> </li> |
