64 lines
2.8 KiB
HTML
64 lines
2.8 KiB
HTML
{% extends "administration/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load utils %}
|
|
|
|
{% block title %}
|
|
{% title %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1><span class="pficon-infrastructure"></span> {% trans "Policies" %}</h1>
|
|
<span>{% trans "Allow users to use Applications based on properties, enforce Password Criteria and selectively apply Factors." %}</span>
|
|
<hr>
|
|
<div class="dropdown">
|
|
<button class="btn btn-primary dropdown-toggle" type="button" id="createDropdown" data-toggle="dropdown">
|
|
{% trans 'Create...' %}
|
|
<span class="caret"></span>
|
|
</button>
|
|
<ul class="dropdown-menu" role="menu" aria-labelledby="createDropdown">
|
|
{% for type, name in types.items %}
|
|
<li role="presentation"><a role="menuitem" tabindex="-1"
|
|
href="{% url 'passbook_admin:policy-create' %}?type={{ type }}&back={{ request.get_full_path }}">{{ name }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
<hr>
|
|
<table class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th></th>
|
|
<th>{% trans 'Name' %}</th>
|
|
<th>{% trans 'Type' %}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for policy in object_list %}
|
|
<tr {% if not policy.policymodel_set.exists %} class="warning" {% endif %}>
|
|
<th>
|
|
{% if not policy.policymodel_set.exists %}
|
|
<span class="pficon-warning-triangle-o" data-toggle="tooltip" data-placement="right" title="{% trans 'Warning: Policy is not assigned.' %}"></span>
|
|
{% else %}
|
|
<span class="pficon-ok" data-toggle="tooltip" data-placement="right" title="{% blocktrans with objects=policy.policymodel_set.all|join:', ' %}Assigned to objects {{ objects }}{% endblocktrans %}"></span>
|
|
{% endif %}
|
|
</th>
|
|
<td>{{ policy.name }}</td>
|
|
<td>{{ policy|verbose_name }}</td>
|
|
<td>
|
|
<a class="btn btn-default btn-sm"
|
|
href="{% url 'passbook_admin:policy-update' pk=policy.uuid %}?back={{ request.get_full_path }}">{% trans 'Edit' %}</a>
|
|
<a class="btn btn-default btn-sm"
|
|
href="{% url 'passbook_admin:policy-test' pk=policy.uuid %}?back={{ request.get_full_path }}">{% trans 'Test' %}</a>
|
|
<a class="btn btn-default btn-sm"
|
|
href="{% url 'passbook_admin:policy-delete' pk=policy.uuid %}?back={{ request.get_full_path }}">{% trans 'Delete' %}</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% include 'partials/pagination.html' %}
|
|
</div>
|
|
{% endblock %}
|