File: xmlrpc_get.html

package info (click to toggle)
django-xmlrpc 0.1.5-6%2Bdeb9u1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 128 kB
  • sloc: python: 166; makefile: 3
file content (26 lines) | stat: -rw-r--r-- 699 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "admin/base_site.html" %}
{% load i18n %}

{% block title %}{% trans "XML-RPC Service" %}{% endblock %}

{% block content %}
<h2>{% trans "XML-RPC Service" %}</h2>

<p>{% trans "You need to invoke this service using an XML-RPC Client." %}</p>

<h3>{% trans "The following methods are available :" %}</h3>

{% for m in methods %}
<div class="functions">
  <h4>{{ m.0 }}</h4>
  <div class="function_desc">
    <strong>{% trans "Types of argument" %}{{ m.1.args|length|pluralize }} :</strong> {{ m.1.args }}
    <br />
    <strong>{% trans "Type of return" %} :</strong> {{ m.1.returns }}
    <br />
    <pre class="function_doc">{{ m.2 }}</pre>
  </div>
</div>
{% endfor %}
{% endblock %}