diff options
Diffstat (limited to 'hyperkitty/templates')
-rw-r--r-- | hyperkitty/templates/api.html | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/hyperkitty/templates/api.html b/hyperkitty/templates/api.html index 750c69b..7537381 100644 --- a/hyperkitty/templates/api.html +++ b/hyperkitty/templates/api.html @@ -38,7 +38,7 @@ retrieve the information known about all the mailing-lists. </a> </p> </div> - <div class="even" style="padding-left: 1em"> + <div class="odd" style="padding-left: 1em"> <h3>Emails <a>/api/email/<list name>/<Message-ID></a></h3> <p> Using the address /api/email/<list name>/<Message-ID> you will be able to @@ -49,7 +49,7 @@ retrieve the information known about a specific email on the specified mailing-l </a> </p> </div> - <div class="odd" style="padding-left: 1em"> + <div class="even" style="padding-left: 1em"> <h3>Threads <a>/api/thread/<list name>/<ThreadID></a></h3> <p> Using the address /api/thread/<list name>/<Message-ID> you will be able to @@ -60,7 +60,7 @@ retrieve the all the email for a specific thread on the specified mailing-list. </a> </p> </div> - <div class="even" style="padding-left: 1em"> + <div class="odd" style="padding-left: 1em"> <h3>Search <a>/api/search/<list name>/<field>/<keyword></a></h3> <p> Using the address /api/search/<list name>/<field>/<keyword> you will be able to @@ -78,4 +78,15 @@ search for all emails of the specified mailing-list containing the provided keyw </a> </p> </div> + <div class="even" style="padding-left: 1em"> + <h3>Tags <a>/api/tag/</a></h3> + <p> +Using the address /api/tag/ you will be able to +retrieve the list of tags. + </p> + <p> For example: <a href="{% url 'api_tag' %}?format=api"> + {% url 'api_tag' %} + </a> + </p> + </div> {% endblock %} |