docs.html 1.7 KB

1234567891011121314151617181920212223242526272829
  1. {% extends '_base.html' %}
  2. {% load render_table from django_tables2 %}
  3. {% block title %}Documentation{% endblock %}
  4. {% block content %}
  5. <div class="row">
  6. <div class="col-md-3">
  7. <div class="panel panel-default">
  8. <div class="panel-heading">
  9. <strong>Documentation</strong>
  10. </div>
  11. <div class="list-group">
  12. <a href="{% url 'docs_root' %}" class="list-group-item{% if path == 'index' %} active{% endif %}">Home</a>
  13. <a href="{% url 'docs' path='getting-started' %}" class="list-group-item{% if path == 'getting-started' %} active{% endif %}">Getting Started</a>
  14. <a href="{% url 'docs' path='configuration' %}" class="list-group-item{% if path == 'configuration' %} active{% endif %}">Configuration</a>
  15. <a href="{% url 'docs' path='dcim' %}" class="list-group-item{% if path == 'dcim' %} active{% endif %}">DCIM</a>
  16. <a href="{% url 'docs' path='ipam' %}" class="list-group-item{% if path == 'ipam' %} active{% endif %}">IPAM</a>
  17. <a href="{% url 'docs' path='circuits' %}" class="list-group-item{% if path == 'circuits' %} active{% endif %}">Circuits</a>
  18. <a href="{% url 'docs' path='secrets' %}" class="list-group-item{% if path == 'secrets' %} active{% endif %}">Secrets</a>
  19. <a href="{% url 'docs' path='extras' %}" class="list-group-item{% if path == 'extras' %} active{% endif %}">Extras</a>
  20. </div>
  21. </div>
  22. </div>
  23. <div class="col-md-9">
  24. {{ content }}
  25. </div>
  26. </div>
  27. {% endblock %}