This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/admin/templates/administration/application/list.html

47 lines
1.7 KiB
HTML
Raw Normal View History

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">
2019-02-25 12:31:11 +00:00
<h1><span class="pficon-applications"></span> {% trans "Applications" %}</h1>
<span>{% trans "External Applications which use passbook as Identity-Provider, utilizing protocols like OAuth2 and SAML." %}</span>
<hr>
<a href="{% url 'passbook_admin:application-create' %}?back={{ request.get_full_path }}" class="btn btn-primary">
2019-02-25 12:31:11 +00:00
{% trans 'Create...' %}
</a>
<hr>
<table class="table table-striped table-bordered">
<thead>
<tr>
<th>{% trans 'Name' %}</th>
<th>{% trans 'Provider' %}</th>
<th>{% trans 'Provider Type' %}</th>
2019-02-25 12:31:11 +00:00
<th></th>
</tr>
</thead>
<tbody>
{% for application in object_list %}
<tr>
<td>{{ application.name }}</td>
<td>{{ application.get_provider }}</td>
<td>{{ application.get_provider|verbose_name }}</td>
2019-02-25 12:31:11 +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>
</tr>
{% endfor %}
</tbody>
</table>
{% include 'partials/pagination.html' %}
2018-11-26 21:08:18 +00:00
</div>
{% endblock %}