2018-11-16 08:10:35 +00:00
|
|
|
{% extends "administration/base.html" %}
|
|
|
|
|
2018-11-26 21:08:18 +00:00
|
|
|
{% load i18n %}
|
|
|
|
{% load utils %}
|
2018-11-16 08:10:35 +00:00
|
|
|
|
2018-11-26 21:08:18 +00:00
|
|
|
{% block title %}
|
|
|
|
{% title %}
|
2018-11-16 08:10:35 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2018-11-26 21:08:18 +00:00
|
|
|
{% block content %}
|
|
|
|
<div class="container">
|
2018-11-26 21:29:59 +00:00
|
|
|
<h1>{% trans "Applications" %}</h1>
|
2019-02-16 10:25:53 +00:00
|
|
|
<span>{% trans "External Applications which use passbook as Identity-Provider, utilizing protocols like OAuth2 and SAML." %}</span>
|
|
|
|
<hr>
|
2018-11-26 21:08:18 +00:00
|
|
|
<a href="{% url 'passbook_admin:application-create' %}" class="btn btn-primary">
|
|
|
|
{% trans 'Create...' %}
|
|
|
|
</a>
|
|
|
|
<hr>
|
|
|
|
<table class="table table-striped table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{% trans 'Name' %}</th>
|
|
|
|
<th>{% trans 'Provider' %}</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for application in object_list %}
|
|
|
|
<tr>
|
|
|
|
<td>{{ application.name }}</td>
|
|
|
|
<td>{{ application.provider }}</td>
|
2018-11-30 14:50:45 +00:00
|
|
|
<td>
|
|
|
|
<a class="btn btn-default btn-sm" href="{% url 'passbook_admin:application-update' pk=application.uuid %}?back={{ request.get_full_path }}">{% trans 'Edit' %}</a>
|
|
|
|
<a class="btn btn-default btn-sm" href="{% url 'passbook_admin:application-delete' pk=application.uuid %}?back={{ request.get_full_path }}">{% trans 'Delete' %}</a>
|
|
|
|
</td>
|
2018-11-26 21:08:18 +00:00
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|
2018-12-10 09:50:19 +00:00
|
|
|
{% endblock %}
|