Skip to content

Instantly share code, notes, and snippets.

@wolendranh
Last active April 6, 2016 13:00
Show Gist options
  • Save wolendranh/632f4e875c3a2b7accabde1e8af05835 to your computer and use it in GitHub Desktop.
Save wolendranh/632f4e875c3a2b7accabde1e8af05835 to your computer and use it in GitHub Desktop.
<body xmlns="http://www.w3.org/1999/html">
<ul class="nav nav-tabs">
<li class="active"><a data-toggle="tab" href="#home">Home</a></li>
<li><a data-toggle="tab" href="{% url "cert" %}">Menu 1</a></li>
<li><a data-toggle="tab" href="#menu2">Menu 2</a></li>
</ul>
<div class="tab-content">
<div id="home" class="tab-pane fade in active">
<div class="container">
<h3>HOME</h3>
</div>
<div id="cert" class="tab-pane fade">
<h3>Menu 1</h3>
<p>Some content in menu 1.</p>
</div>
<div id="menu2" class="tab-pane fade">
<h3>Menu 1</h3>
<!-- including additional html -->
{% include "revoke_cert.html" %}
</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment