2016-05-24 12:38:06 -04:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
|
|
|
|
{% block title %}Documentation{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-3">
|
2016-05-24 15:45:28 -04:00
|
|
|
<div class="panel panel-default">
|
|
|
|
<div class="panel-heading">
|
|
|
|
<strong>Documentation</strong>
|
|
|
|
</div>
|
|
|
|
<div class="list-group">
|
|
|
|
<a href="{% url 'docs_root' %}" class="list-group-item{% if path == 'index' %} active{% endif %}">Home</a>
|
2016-06-17 14:19:56 -04:00
|
|
|
<a href="{% url 'docs' path='getting-started' %}" class="list-group-item{% if path == 'getting-started' %} active{% endif %}">Getting Started</a>
|
2016-05-24 15:45:28 -04:00
|
|
|
<a href="{% url 'docs' path='configuration' %}" class="list-group-item{% if path == 'configuration' %} active{% endif %}">Configuration</a>
|
2016-06-16 17:11:52 -04:00
|
|
|
<a href="{% url 'docs' path='dcim' %}" class="list-group-item{% if path == 'dcim' %} active{% endif %}">DCIM</a>
|
|
|
|
<a href="{% url 'docs' path='ipam' %}" class="list-group-item{% if path == 'ipam' %} active{% endif %}">IPAM</a>
|
|
|
|
<a href="{% url 'docs' path='circuits' %}" class="list-group-item{% if path == 'circuits' %} active{% endif %}">Circuits</a>
|
|
|
|
<a href="{% url 'docs' path='secrets' %}" class="list-group-item{% if path == 'secrets' %} active{% endif %}">Secrets</a>
|
2016-06-24 14:37:48 -04:00
|
|
|
<a href="{% url 'docs' path='extras' %}" class="list-group-item{% if path == 'extras' %} active{% endif %}">Extras</a>
|
2016-05-24 15:45:28 -04:00
|
|
|
</div>
|
2016-05-24 12:38:06 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-md-9">
|
|
|
|
{{ content }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|