Add tooltips to other methods

This commit is contained in:
Alec Perkins 2012-09-07 17:10:13 -04:00
parent c499fa0010
commit 9ded9d232c

View File

@ -72,10 +72,10 @@
</form> </form>
{% endif %} {% endif %}
<div class='content-main'> <div class="content-main">
<div class="page-header"><h1>{{ name }}</h1></div> <div class="page-header"><h1>{{ name }}</h1></div>
<p>{{ description }}</p> <p>{{ description }}</p>
<div class='module'> <div class="response-content">
<pre><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %} <pre><b>HTTP {{ response.status_code }} {{ response.status_text }}</b>{% autoescape off %}
{% for key, val in response.items %}<b>{{ key }}:</b> {{ val|urlize_quoted_links }} {% for key, val in response.items %}<b>{{ key }}:</b> {{ val|urlize_quoted_links }}
{% endfor %} {% endfor %}
@ -84,7 +84,7 @@
{% if 'GET' in allowed_methods %} {% if 'GET' in allowed_methods %}
<form> <form>
<fieldset class='module aligned'> <fieldset>
<h2>GET: {{ name }}</h2> <h2>GET: {{ name }}</h2>
<div class="btn-group format-selection"> <div class="btn-group format-selection">
@ -100,10 +100,6 @@
</form> </form>
{% endif %} {% endif %}
{% comment %}
DROP POST/PUT/DELETE until the forms are working with REST framework 2
{# Only display the POST/PUT/DELETE forms if method tunneling via POST forms is enabled and the user has permissions on this view. #}
{% if response.status_code != 403 %} {% if response.status_code != 403 %}
{% if 'POST' in allowed_methods %} {% if 'POST' in allowed_methods %}
@ -121,7 +117,7 @@
</div> </div>
{% endfor %} {% endfor %}
<button class="btn btn-primary">POST</button> <button class="btn btn-primary" title="Do a POST request on the {{ name }} resource">POST</button>
</fieldset> </fieldset>
</form> </form>
{% endif %} {% endif %}
@ -142,7 +138,7 @@
</div> </div>
{% endfor %} {% endfor %}
<button class="btn btn-primary">PUT</button> <button class="btn btn-primary js-tooltip" title="Do a PUT request on the {{ name }} resource">PUT</button>
</fieldset> </fieldset>
</form> </form>
@ -154,13 +150,13 @@
<h2>DELETE: {{ name }}</h2> <h2>DELETE: {{ name }}</h2>
{% csrf_token %} {% csrf_token %}
<input type="hidden" name="{{ api_settings.FORM_METHOD_OVERRIDE }}" value="DELETE" /> <input type="hidden" name="{{ api_settings.FORM_METHOD_OVERRIDE }}" value="DELETE" />
<button class="btn btn-danger">DELETE</button> <button class="btn btn-danger js-tooltip" title="Do a DELETE request on the {{ name }} resource">DELETE</button>
</fieldset> </fieldset>
</form> </form>
{% endif %} {% endif %}
{% endif %} {% endif %}
{% endcomment %}
</div> </div>
<!-- END content-main --> <!-- END content-main -->