mirror of
https://github.com/RunLit/Bambu-Run.git
synced 2026-06-22 14:09:04 +01:00
docker deployment patch with verification and broken UI fixes (#1)
* bypass bambu cloud api opencb requirement * project root add to managepy * update instruction to do migration; mqtt login more verbose * migrations up to date model * use migrations from django migrate * print full token to copy paste * allow local network hosts * added side bar toggle * removed standalone css from dashboard css * added icon and fixed text trunction issue * fixed chart missing whitenoise and not rendering * aded favicon and fixed ui issues
This commit is contained in:
21
standalone/templates/standalone_base.html
Normal file
21
standalone/templates/standalone_base.html
Normal file
@@ -0,0 +1,21 @@
|
||||
{% extends "bambu_run/base.html" %}
|
||||
{% load static %}
|
||||
|
||||
{% block extra_head %}
|
||||
<link rel="icon" type="image/png" href="{% static 'favicon-32.png' %}">
|
||||
{% endblock %}
|
||||
|
||||
{% block sidebar_brand_icon %}
|
||||
<img src="{% static 'favicon-64.png' %}" alt="Bambu Run" width="32" height="32" style="flex-shrink:0;">
|
||||
{% endblock %}
|
||||
|
||||
{% block logout_nav %}
|
||||
{% if user.is_authenticated %}
|
||||
<li class="nav-item">
|
||||
<form method="post" action="{% url 'logout' %}" style="margin:0;">
|
||||
{% csrf_token %}
|
||||
<button type="submit" class="nav-link">Logout</button>
|
||||
</form>
|
||||
</li>
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user