web: fix layout for search

This commit is contained in:
Jens Langhammer 2021-03-08 12:55:13 +01:00
parent 2852fa3c5e
commit ff276fcc58
3 changed files with 4 additions and 8 deletions

View File

@ -1,9 +1,6 @@
{% extends container_template|default:"administration/base.html" %}
{% load i18n %}
{% load authentik_utils %}
{% block content %}
<section class="pf-c-page__main-section pf-m-light">
<div class="pf-c-content">
{% block above_form %}
@ -38,4 +35,3 @@
<input class="pf-c-button pf-m-danger" type="submit" form="delete-form" value="{% trans 'Delete' %}" />
<a class="pf-c-button pf-m-secondary" href="{% back %}">{% trans "Back" %}</a>
</footer>
{% endblock %}

View File

@ -6,10 +6,10 @@ export interface QueryArguments {
export interface BaseInheritanceModel {
object_type: string;
objectType: string;
verbose_name: string;
verbose_name_plural: string;
verboseName: string;
verboseNamePlural: string;
}

View File

@ -18,7 +18,7 @@ export abstract class TablePage<T> extends Table<T> {
this.search = value;
this.fetch();
}}>
</ak-table-search>`;
</ak-table-search>&nbsp;`;
}
render(): TemplateResult {