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 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 %}
|
||||
|
|
|
@ -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;
|
||||
|
||||
}
|
||||
|
||||
|
|
|
@ -18,7 +18,7 @@ export abstract class TablePage<T> extends Table<T> {
|
|||
this.search = value;
|
||||
this.fetch();
|
||||
}}>
|
||||
</ak-table-search>`;
|
||||
</ak-table-search> `;
|
||||
}
|
||||
|
||||
render(): TemplateResult {
|
||||
|
|
Reference in New Issue