2016-03-01 11:23:03 -05:00
|
|
|
{% extends '_base.html' %}
|
|
|
|
{% load helpers %}
|
|
|
|
|
|
|
|
{% block title %}Secrets{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="pull-right">
|
|
|
|
{% if perms.secrets.add_secret %}
|
|
|
|
<a href="{% url 'secrets:secret_import' %}" class="btn btn-info">
|
|
|
|
<span class="glyphicon glyphicon-import" aria-hidden="true"></span>
|
|
|
|
Import secrets
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
<h1>Secrets</h1>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
2016-03-04 11:33:15 -05:00
|
|
|
{% include 'secrets/inc/secret_table.html' %}
|
2016-03-01 11:23:03 -05:00
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
{% include 'inc/filter_panel.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|