You've already forked hotpocket
BTHLABS-64: Support for customized environments
Co-authored-by: Tomek Wójcik <labs@tomekwojcik.pl> Co-committed-by: Tomek Wójcik <labs@tomekwojcik.pl>
This commit is contained in:
@@ -82,3 +82,21 @@ def appearance_settings(request: HttpRequest) -> dict:
|
||||
return {
|
||||
'APPEARANCE_SETTINGS': result,
|
||||
}
|
||||
|
||||
|
||||
def base_includes(request: HttpRequest) -> dict:
|
||||
return {
|
||||
'BASE_INCLUDES': {
|
||||
'head': settings.UI_BASE_HEAD_INCLUDES,
|
||||
'script': settings.UI_BASE_SCRIPT_INCLUDES,
|
||||
},
|
||||
}
|
||||
|
||||
|
||||
def page_includes(request: HttpRequest) -> dict:
|
||||
return {
|
||||
'PAGE_INCLUDES': {
|
||||
'head': settings.UI_PAGE_HEAD_INCLUDES,
|
||||
'script': settings.UI_PAGE_SCRIPT_INCLUDES,
|
||||
},
|
||||
}
|
||||
|
||||
@@ -31,11 +31,17 @@
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'ui/img/icon-32.png' %}">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'ui/img/icon-16.png' %}">
|
||||
<link rel="manifest" href="{% url 'ui.meta.manifest_json' %}">
|
||||
{% for head_include in BASE_INCLUDES.head %}
|
||||
{% include head_include %}
|
||||
{% endfor %}
|
||||
{% block page_head %}{% endblock %}
|
||||
</head>
|
||||
<body class="{% block body_class %}{% endblock %}" hx-headers='{"x-csrftoken": "{{ csrf_token }}"}'>
|
||||
{% block body %}
|
||||
{% endblock %}
|
||||
{% block scripts %}{% endblock %}
|
||||
{% for script_include in BASE_INCLUDES.script %}
|
||||
{% include script_include %}
|
||||
{% endfor %}
|
||||
</body>
|
||||
</html>
|
||||
|
||||
@@ -2,6 +2,12 @@
|
||||
|
||||
{% load i18n static ui %}
|
||||
|
||||
{% block page_head %}
|
||||
{% for head_include in PAGE_INCLUDES.head %}
|
||||
{% include head_include %}
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
|
||||
{% block body %}
|
||||
<nav id="navbar" class="navbar navbar-expand-sm bg-body-tertiary fixed-top">
|
||||
<div class="container">
|
||||
@@ -153,7 +159,11 @@
|
||||
<script src="{% static 'ui/js/hotpocket-backend.ui.BrowseAccountAppsView.js' %}" type="text/javascript"></script>
|
||||
<script src="{% static 'ui/js/hotpocket-backend.ui.InlineCreateSaveForm.js' %}" type="text/javascript"></script>
|
||||
<script src="{% static 'ui/js/hotpocket-backend.ui.PasteboardLink.js' %}" type="text/javascript"></script>
|
||||
{% block page_scripts %}{% endblock %}
|
||||
{% for script_include in PAGE_INCLUDES.script %}
|
||||
{% include script_include %}
|
||||
{% endfor %}
|
||||
{% block page_scripts %}
|
||||
{% endblock %}
|
||||
<script type="text/javascript">
|
||||
(() => {
|
||||
window.HotPocket.run({
|
||||
|
||||
Reference in New Issue
Block a user