From 81963f69d101e87b8b33c9631a0be3a08a359160 Mon Sep 17 00:00:00 2001
From: Jeremy Stretch <jstretch@digitalocean.com>
Date: Tue, 24 May 2016 15:45:28 -0400
Subject: [PATCH] Converted nav list to panel

---
 netbox/templates/docs.html | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/netbox/templates/docs.html b/netbox/templates/docs.html
index 9821a10f7..f22aec586 100644
--- a/netbox/templates/docs.html
+++ b/netbox/templates/docs.html
@@ -6,10 +6,15 @@
 {% block content %}
     <div class="row">
         <div class="col-md-3">
-            <div class="list-group">
-                <a href="{% url 'docs_root' %}" class="list-group-item{% if path == 'index' %} active{% endif %}">Home</a>
-                <a href="{% url 'docs' path='configuration' %}" class="list-group-item{% if path == 'configuration' %} active{% endif %}">Configuration</a>
-                <a href="{% url 'docs' path='data-model' %}" class="list-group-item{% if path == 'data-model' %} active{% endif %}">Data Model</a>
+            <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>
+                    <a href="{% url 'docs' path='configuration' %}" class="list-group-item{% if path == 'configuration' %} active{% endif %}">Configuration</a>
+                    <a href="{% url 'docs' path='data-model' %}" class="list-group-item{% if path == 'data-model' %} active{% endif %}">Data Model</a>
+                </div>
             </div>
         </div>
         <div class="col-md-9">