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

37 lines
976 B
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">
<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>
<th></th>
</tr>
</thead>
<tbody>
{% for application in object_list %}
<tr>
<td>{{ application.name }}</td>
<td>{{ application.provider }}</td>
<td><a href="{% url 'passbook_admin:application-update' pk=application.uuid %}">{% trans 'Edit' %}</a></td>
<td><a href="{% url 'passbook_admin:application-delete' pk=application.uuid %}">{% trans 'Delete' %}</a></td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
2018-11-16 08:10:35 +00:00
{% endblock %}