This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
authentik/passbook/admin/templates/administration/shell.html

24 lines
680 B
HTML
Raw Normal View History

{% extends "base/page.html" %}
{% load static %}
{% load i18n %}
{% load passbook_is_active %}
{% load passbook_utils %}
{% block head %}
{{ block.super }}
<link rel="stylesheet" href="{% static 'node_modules/codemirror/lib/codemirror.css' %}">
<link rel="stylesheet" href="{% static 'node_modules/codemirror/theme/monokai.css' %}">
{% endblock %}
{% block page_content %}
<pb-admin-sidebar class="pf-c-page__sidebar">
</pb-admin-sidebar>
<pb-router-outlet role="main" class="pf-c-page__main" tabindex="-1" id="main-content">
</pb-router-outlet>
<!-- <pb-admin-shell url="{% url 'passbook_admin:overview' %}" >
2020-11-21 10:28:11 +00:00
<div slot="body"></div>
</pb-admin-shell> -->
{% endblock %}