64 lines
2.4 KiB
HTML
64 lines
2.4 KiB
HTML
{% extends "administration/base.html" %}
|
|
|
|
{% load i18n %}
|
|
{% load utils %}
|
|
{% load admin_reflection %}
|
|
|
|
{% block title %}
|
|
{% title %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="container">
|
|
<h1><span class="pficon-plugged"></span> {% trans "Factors" %}</h1>
|
|
<span>{% trans "Factors required for a user to successfully authenticate." %}</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:factor-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>{% trans 'Name' %}</th>
|
|
<th>{% trans 'Type' %}</th>
|
|
<th>{% trans 'Order' %}</th>
|
|
<th>{% trans 'Enabled?' %}</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for factor in object_list %}
|
|
<tr>
|
|
<td>{{ factor.name }} ({{ factor.slug }})</td>
|
|
<td>{{ factor|verbose_name }}</td>
|
|
<td>{{ factor.order }}</td>
|
|
<td>{{ factor.enabled }}</td>
|
|
<td>
|
|
<a class="btn btn-default btn-sm"
|
|
href="{% url 'passbook_admin:factor-update' pk=factor.pk %}?back={{ request.get_full_path }}">{% trans 'Edit' %}</a>
|
|
<a class="btn btn-default btn-sm"
|
|
href="{% url 'passbook_admin:factor-delete' pk=factor.pk %}?back={{ request.get_full_path }}">{% trans 'Delete' %}</a>
|
|
{% get_links factor as links %}
|
|
{% for name, href in links.items %}
|
|
<a class="btn btn-default btn-sm"
|
|
href="{{ href }}?back={{ request.get_full_path }}">{% trans name %}</a>
|
|
{% endfor %}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% include 'partials/pagination.html' %}
|
|
</div>
|
|
{% endblock %}
|