summaryrefslogtreecommitdiff
path: root/gstudio/xmlrpc/rpc/templates/xmlrpc_get.html
blob: 4c9fdfc65748d7b4e0f92082a9319bfd783d1643 (plain)
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 %}