{% extends "base.html" %} {% block title %}Thermal Printer App - Home{% endblock %} {% block content %}

Thermal Printer Application

Select a template to print or create custom content

{% if recent_templates %}

Recent Templates

{% for template_name in recent_templates %} {% if template_name in templates %} {% endif %} {% endfor %}
{% endif %}
{% for name, template in templates.items() %}
{{ template.name }}
{% if template.description %}

{{ template.description }}

{% endif %}
{% if template.variables %}
{{ template.variables|length }} variable{{ 's' if template.variables|length != 1 else '' }}
{% else %}
Ready to print
{% endif %}
Use Template {% if name in recent_templates %} {% endif %}
{% endfor %}
Configuration

Manage printer settings and application preferences

Open Settings
{% if not templates %}

No Templates Available

No templates have been configured yet. Check your template directory or create new templates.

{% endif %} {% endblock %}