Created
August 25, 2014 14:40
-
-
Save cezar77/90db320792d22d91380b to your computer and use it in GitHub Desktop.
Django REST Framework 2.3.14 - rendered HTML
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> | |
| <meta name="robots" content="NONE,NOARCHIVE" /> | |
| <title>Django REST framework</title> | |
| <link rel="stylesheet" type="text/css" href="/static/rest_framework/css/bootstrap.min.css"/> | |
| <link rel="stylesheet" type="text/css" href="/static/rest_framework/css/bootstrap-tweaks.css"/> | |
| <link rel="stylesheet" type="text/css" href="/static/rest_framework/css/prettify.css"/> | |
| <link rel="stylesheet" type="text/css" href="/static/rest_framework/css/default.css"/> | |
| </head> | |
| <body class=" container"> | |
| <div class="wrapper"> | |
| <div class="navbar navbar-inverse"> | |
| <div class="navbar-inner"> | |
| <div class="container-fluid"> | |
| <span href="/"> | |
| <a class='brand' rel="nofollow" href='http://www.django-rest-framework.org'>Django REST framework <span class="version">2.3.14</span></a> | |
| </span> | |
| <ul class="nav pull-right"> | |
| <li><a href='/api-auth/login/?next=/'>Log in</a></li> | |
| </ul> | |
| </div> | |
| </div> | |
| </div> | |
| <ul class="breadcrumb"> | |
| <li> | |
| <a href="/" class="active">Api Root</a> | |
| </li> | |
| </ul> | |
| <!-- Content --> | |
| <div id="content"> | |
| <form id="get-form" class="pull-right"> | |
| <fieldset> | |
| <div class="btn-group format-selection"> | |
| <a class="btn btn-primary js-tooltip" href='/' rel="nofollow" title="Make a GET request on the Api Root resource">GET</a> | |
| <button class="btn btn-primary dropdown-toggle js-tooltip" data-toggle="dropdown" title="Specify a format for the GET request"> | |
| <span class="caret"></span> | |
| </button> | |
| <ul class="dropdown-menu"> | |
| <li> | |
| <a class="js-tooltip format-option" href='/?format=json' rel="nofollow" title="Make a GET request on the Api Root resource with the format set to `json`">json</a> | |
| </li> | |
| <li> | |
| <a class="js-tooltip format-option" href='/?format=api' rel="nofollow" title="Make a GET request on the Api Root resource with the format set to `api`">api</a> | |
| </li> | |
| </ul> | |
| </div> | |
| </fieldset> | |
| </form> | |
| <form class="button-form" action="/" method="POST" class="pull-right"> | |
| <input type='hidden' name='csrfmiddlewaretoken' value='t3CeHWVSFMIhy0hzu9QBpLDdv4gFawHN' /> | |
| <input type="hidden" name="_method" value="OPTIONS" /> | |
| <button class="btn btn-primary js-tooltip" title="Make an OPTIONS request on the Api Root resource">OPTIONS</button> | |
| </form> | |
| <div class="content-main"> | |
| <div class="page-header"><h1>Api Root</h1></div> | |
| <div class="request-info" style="clear: both" > | |
| <pre class="prettyprint"><b>GET</b> /</pre> | |
| </div> | |
| <div class="response-info"> | |
| <pre class="prettyprint"><div class="meta nocode"><b>HTTP 200 OK</b> | |
| <b>Content-Type:</b> <span class="lit">application/json</span> | |
| <b>Vary:</b> <span class="lit">Accept</span> | |
| <b>Allow:</b> <span class="lit">GET, HEAD, OPTIONS</span> | |
| </div>{ | |
| "users": "<a href="http://localhost:8080/users/" rel="nofollow">http://localhost:8080/users/</a>", | |
| "snippets": "<a href="http://localhost:8080/snippets/" rel="nofollow">http://localhost:8080/snippets/</a>" | |
| }</pre> | |
| </div> | |
| </div> | |
| </div> | |
| <!-- END content-main --> | |
| </div> | |
| <!-- END Content --> | |
| <div id="push"></div> | |
| </div> | |
| </div><!-- ./wrapper --> | |
| <script src="/static/rest_framework/js/jquery-1.8.1-min.js"></script> | |
| <script src="/static/rest_framework/js/bootstrap.min.js"></script> | |
| <script src="/static/rest_framework/js/prettify-min.js"></script> | |
| <script src="/static/rest_framework/js/default.js"></script> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment