version: 1
metadata:
labels:
blueprints.goauthentik.io/system: "true"
name: System - Interfaces
entries:
- model: authentik_interfaces.interface
identifiers:
url_name: user
type: user
attrs:
template: |
{% extends "base/skeleton.html" %}
{% load static %}
{% load i18n %}
{% block head %}
{% include "base/header_js.html" %}
{% endblock %}
{% block body %}
{% endblock %}
- model: authentik_interfaces.interface
identifiers:
url_name: admin
type: admin
attrs:
template: |
{% extends "base/skeleton.html" %}
{% load static %}
{% load i18n %}
{% block head %}
{% include "base/header_js.html" %}
{% endblock %}
{% block body %}
{% endblock %}
- model: authentik_interfaces.interface
identifiers:
url_name: flow
type: flow
attrs:
template: |
{% extends "base/skeleton.html" %}
{% load static %}
{% load i18n %}
{% block head_before %}
{{ block.super }}
{% if flow.compatibility_mode and not inspector %}
{% endif %}
{% include "base/header_js.html" %}
{% endblock %}
{% block head %}
{% endblock %}
{% block body %}
{% endblock %}