f3c3eb970d
Sort the libraries on the language bindings page by the service description to be consistent with other sorted lists. Change-Id: I391f18cc9f66acd710a194bee16d6e33d5d82485 Signed-off-by: Doug Hellmann <doug@doughellmann.com>
67 lines
2.4 KiB
HTML
67 lines
2.4 KiB
HTML
{% set series = 'latest' %}
|
|
{% set projects = PROJECT_DATA[series] %}
|
|
{% set scriptdir = './common/js/' %}
|
|
{% set cssdir = './common/css/' %}
|
|
{% extends "templates/base.tmpl" %}
|
|
{% block pagetitle %}Language bindings{% endblock %}
|
|
{% block title %}
|
|
<a href="https://docs.openstack.org/">Documentation</a> > Language Bindings and Python Clients
|
|
{% endblock %}
|
|
{% block content %}
|
|
<!-- Begin Page Content -->
|
|
<div class="top-docs-wrapper">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-lg-8 col-md-8 col-sm-8">
|
|
<h1>OpenStack API Bindings</h1>
|
|
<p>
|
|
This page contains documentation about the Python bindings provided by OpenStack and how to use them.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="mid-docs-wrapper" id="docs-main-body">
|
|
<div class="container">
|
|
<div class="row docs-toc">
|
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-book"></i> Bindings for the OpenStack APIs</h3>
|
|
{% for project in projects|sort(attribute='service') -%}
|
|
{% if project.type == 'client' %}
|
|
<a href="/{{project.name}}/latest/">
|
|
{{project.service}} ({{project.description}})
|
|
</a><br />
|
|
{% endif %}
|
|
{%- endfor %}
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6 col-md-6 col-sm-6">
|
|
<div class="docs-link-sections">
|
|
<h3><i class="fa fa-cloud"></i> Use the dashboard and command-line clients</h3>
|
|
<a href="/user-guide/latest/">
|
|
OpenStack End User Guide
|
|
</a><br />
|
|
<p>
|
|
User guide for the OpenStack dashboard and command-line clients.
|
|
</p>
|
|
<a href="/python-openstackclient/latest/">
|
|
Unified OpenStack Client
|
|
</a><br />
|
|
<p>
|
|
Documentation for python-openstackclient, a unified shell command structure.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row docs-contribute-wrapper">
|
|
<div class="col-lg-12">
|
|
<p>Documentation treated like code, powered by the community - interested?</p>
|
|
<a href="/contributor-guide/" class="overview-btn contribute-btn"
|
|
>How To Contribute <i class="fa fa-chevron-right"></i></a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock content %}
|