web: fix layout for search
This commit is contained in:
parent
2852fa3c5e
commit
ff276fcc58
|
@ -1,9 +1,6 @@
|
||||||
{% extends container_template|default:"administration/base.html" %}
|
|
||||||
|
|
||||||
{% load i18n %}
|
{% load i18n %}
|
||||||
{% load authentik_utils %}
|
{% load authentik_utils %}
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<section class="pf-c-page__main-section pf-m-light">
|
<section class="pf-c-page__main-section pf-m-light">
|
||||||
<div class="pf-c-content">
|
<div class="pf-c-content">
|
||||||
{% block above_form %}
|
{% block above_form %}
|
||||||
|
@ -38,4 +35,3 @@
|
||||||
<input class="pf-c-button pf-m-danger" type="submit" form="delete-form" value="{% trans 'Delete' %}" />
|
<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>
|
<a class="pf-c-button pf-m-secondary" href="{% back %}">{% trans "Back" %}</a>
|
||||||
</footer>
|
</footer>
|
||||||
{% endblock %}
|
|
||||||
|
|
|
@ -6,10 +6,10 @@ export interface QueryArguments {
|
||||||
|
|
||||||
export interface BaseInheritanceModel {
|
export interface BaseInheritanceModel {
|
||||||
|
|
||||||
object_type: string;
|
objectType: string;
|
||||||
|
|
||||||
verbose_name: string;
|
verboseName: string;
|
||||||
verbose_name_plural: string;
|
verboseNamePlural: string;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,7 @@ export abstract class TablePage<T> extends Table<T> {
|
||||||
this.search = value;
|
this.search = value;
|
||||||
this.fetch();
|
this.fetch();
|
||||||
}}>
|
}}>
|
||||||
</ak-table-search>`;
|
</ak-table-search> `;
|
||||||
}
|
}
|
||||||
|
|
||||||
render(): TemplateResult {
|
render(): TemplateResult {
|
||||||
|
|
Reference in New Issue