18 lines
342 B
HTML
18 lines
342 B
HTML
{% extends "kaehmy_base.html" %}
|
|
|
|
{% load static %}
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
|
<div>
|
|
<div>
|
|
<h2 style="padding-top: 1rem">{% trans "All applications" %}</h2>
|
|
</div>
|
|
|
|
{{ table|safe }}
|
|
<div>
|
|
<a href="/kaehmy" class="btn btn-primary">{% trans "Front page" %}</a>
|
|
</div>
|
|
</div>
|
|
{% endblock content %}
|