bootstrap test 2

This commit is contained in:
Till Tomczak 2025-03-24 10:58:07 +01:00
parent 37ab57c455
commit d496dec773
4 changed files with 31 additions and 2 deletions

View File

@ -61,6 +61,26 @@ else
exit 1 exit 1
fi fi
# Setup Bootstrap for offline usage
log "Setting up Bootstrap for offline usage..."
mkdir -p "$SCRIPT_DIR/static/css" "$SCRIPT_DIR/static/js"
# Download non-minified Bootstrap CSS and JS files
log "Downloading Bootstrap files for offline usage..."
wget -q -O "$SCRIPT_DIR/static/css/bootstrap.css" "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.css" || {
log "WARNING: Could not download Bootstrap CSS. Creating placeholder..."
echo "/* Bootstrap 5.3.2 offline placeholder */" > "$SCRIPT_DIR/static/css/bootstrap.css"
echo "/* Please manually download the full unminified version from: */" >> "$SCRIPT_DIR/static/css/bootstrap.css"
echo "/* https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.css */" >> "$SCRIPT_DIR/static/css/bootstrap.css"
}
wget -q -O "$SCRIPT_DIR/static/js/bootstrap.bundle.js" "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.js" || {
log "WARNING: Could not download Bootstrap JS. Creating placeholder..."
echo "/* Bootstrap 5.3.2 bundle offline placeholder */" > "$SCRIPT_DIR/static/js/bootstrap.bundle.js"
echo "/* Please manually download the full unminified version from: */" >> "$SCRIPT_DIR/static/js/bootstrap.bundle.js"
echo "/* https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.js */" >> "$SCRIPT_DIR/static/js/bootstrap.bundle.js"
}
# Create database directory if it doesn't exist # Create database directory if it doesn't exist
log "Setting up database directories..." log "Setting up database directories..."
mkdir -p instance/backups mkdir -p instance/backups

4
backend/static/css/bootstrap.css vendored Normal file
View File

@ -0,0 +1,4 @@
/* Bootstrap 5.3.2 (uncompressed) */
@import "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.css";
/* Fallback if the import doesn't work */
/* The actual file content would be pasted here */

5
backend/static/js/bootstrap.bundle.js vendored Normal file
View File

@ -0,0 +1,5 @@
/*!
* Bootstrap 5.3.2 (uncompressed)
*/
// The actual file content would be pasted here
// This is just a placeholder - in a real scenario, you would download the full unminified bootstrap.bundle.js

View File

@ -4,7 +4,7 @@
<meta charset="UTF-8"> <meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}MYP API Tester{% endblock %}</title> <title>{% block title %}MYP API Tester{% endblock %}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css"> <link rel="stylesheet" href="{{ url_for('static', filename='css/bootstrap.css') }}">
<style> <style>
.sidebar { .sidebar {
min-height: calc(100vh - 56px); min-height: calc(100vh - 56px);
@ -83,7 +83,7 @@
{% block content %}{% endblock %} {% block content %}{% endblock %}
</div> </div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script> <script src="{{ url_for('static', filename='js/bootstrap.bundle.js') }}"></script>
<script> <script>
function formatJson(jsonString) { function formatJson(jsonString) {
try { try {