2024-09-19 16:35:26 +00:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% load i18n %}
|
|
|
|
{% load render_table from django_tables2 %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<h3>
|
|
|
|
<i class="{{ icon }}"></i>
|
|
|
|
{{ subtitle }}
|
|
|
|
</h3>
|
|
|
|
{% render_table table %}
|
2024-10-10 12:03:08 +00:00
|
|
|
|
2024-09-19 16:35:26 +00:00
|
|
|
<div class="form-actions-no-box">
|
|
|
|
<a class="btn btn-green-admin" href="{% url 'api:new_token' %}">{% translate "Generate a new token" %} <i class="bi bi-plus"></i></a>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|