{% extends "modern/base.html" %} {% block title %}Configuration - Zebra Day{% endblock %} {% block content %}

Printer Configuration

Network Scanner

Enter the first three octets of your network
{% for lab in labs %}
Longer wait times find more printers on slow networks
Also probe this HTTP port for web-based discovery

Backend Configuration

{% if backend_info and backend_info.backend_type == 'dynamodb' %}
{% endif %}
Backend Type: {% if backend_info and backend_info.backend_type == 'dynamodb' %} DynamoDB {% else %} Local {% endif %}
{% if backend_info and backend_info.error %}
Error: {{ backend_info.error }}
{% endif %}
AWS Profile
{{ backend_info.aws_profile | default('N/A') }}
DynamoDB Table
{{ backend_info.dynamo_table | default('N/A') }}
AWS Region
{{ backend_info.aws_region | default('N/A') }}
S3 Backup Bucket
{{ backend_info.s3_bucket | default('N/A') }}
S3 Prefix
{{ backend_info.s3_prefix | default('N/A') }}
Last Backup
{{ backend_info.last_backup | default('N/A') }}
Config Version
{{ backend_info.config_version | default('N/A') }}
{% if backend_info and backend_info.backend_type == 'dynamodb' and backend_info.config_updated_at %}
Last Updated
{{ backend_info.config_updated_at }} by {{ backend_info.config_updated_by | default('unknown') }}
{% endif %}

Switch Backend click to expand

Session-only: Switching backend affects only this running server. To persist, set environment variables before restarting.

Current Configuration

View Full
Loaded from: {{ config_file_path | default('Unknown') }}
{% if config_summary %}
{{ config_summary.labs }}
Labs
{{ config_summary.printers }}
Printers
{{ config_summary.templates }}
Templates
{{ config_summary.backups }}
Backups
{% endif %} {% if labs %}

Configured Labs

{% for lab in labs %}
{{ labs_meta.get(lab, {}).get("lab_display_name", lab) }} Key: {{ lab }}
{% endfor %}
{% else %}

No labs configured

Scan Network
{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}