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.
2020-11-20 21:46:05 +00:00
|
|
|
{% 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 %}
|
2020-11-21 13:03:02 +00:00
|
|
|
<pb-admin-sidebar class="pf-c-page__sidebar">
|
|
|
|
</pb-admin-sidebar>
|
2020-11-21 23:06:25 +00:00
|
|
|
<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>
|
2020-11-21 23:06:25 +00:00
|
|
|
</pb-admin-shell> -->
|
2020-11-20 21:46:05 +00:00
|
|
|
{% endblock %}
|