{% extends "support.html" %} {% block head %} {{ block.super }} {% endblock %} {% block pagehead %} {% include 'pagehead.html' %} {% endblock %} {% block content %}
{% csrf_token %} {{ printer_form.management_form }} {% for frm in printer_form %} {% if frm.is_external.value == False or frm.is_external.value == 'False' %} {% endif %} {% endfor %}
Internal Printers
Tag Description Label Desc. Type Ip Address Port Dark Print Speed Printhead Type Orientation Top Of Form Shift Left Conn. Type Serial Port Baud Rate Falling Edge Rising Edge DLX Present Label On?
{{ frm.is_external }}{{ frm.id }}{{ frm.tag }} {{ frm.description }} {{ frm.label_description }} {{ frm.type }} {{ frm.ip_address }} {{ frm.ip_port }} {{ frm.darkness }} {% if frm.type.value == 100 %} {% else %}{{ frm.print_speed }}{% endif %} {% if frm.type.value == 100 %} {% else %}{{ frm.printhead_type }}{% endif %} {% if frm.type.value == 100 %} {% else %}{{ frm.orientation }}{% endif %} {{ frm.top_of_form }} {{ frm.shift_left }} {% if frm.type.value == 100 %} {% else %}{{ frm.conn_type }}{% endif %} {% if frm.type.value == 100 %} {% else %}{{ frm.serial_port }}{% endif %} {% if frm.type.value == 100 %} {% else %}{{ frm.baud_rate }}{% endif %} {% if frm.type.value != 100 %} {% else %}{{ frm.falling_edge }}{% endif %} {% if frm.type.value != 100 %} {% else %}{{ frm.rising_edge }}{% endif %} {% if frm.type.value == 100 %} {% else %}{{ frm.dlx_present_lbl_on }}{% endif %}    
{% for frm in printer_form %} {% if frm.is_external.value == True or frm.is_external.value == 'True' %} {% endif %} {% endfor %}
External Printers
Tag Description Cups Name Label Desc. Type Printhead Type Orientation Active Del?
{{ frm.is_external }}{{ frm.id }}{{ frm.tag }} {{ frm.description }} {{ frm.cups_name }} {{ frm.label_description }} {{ frm.type }} {{ frm.printhead_type }} {{ frm.orientation }} {{ frm.active }} {% if printer_form.can_delete %} {{ frm.DELETE }} {% endif %}
CUPS Management Page

 

 

Manage Label Formats

{{ label_format_form.management_form }} {% for lblfrm in label_format_form %} {% endfor %}
Tag Description Label Type Width Height DPI Width DPI Height Format Tags Active Del?
{{ lblfrm.id }}{{ lblfrm.tag }} {{ lblfrm.description }} {{ lblfrm.task_group }} {{ lblfrm.width_in }} {{ lblfrm.height_in }} {{ lblfrm.dpi_width }} {{ lblfrm.dpi_height }} {{ lblfrm.label_defn_name }}
{{ lblfrm.backside_label_defn_name }}
{{ lblfrm.active }} {% if label_format_form.can_delete %}{% if lblfrm.tag.value not in default_formats %} {{ lblfrm.DELETE }}{% endif %} {% endif %}
{% csrf_token %}
Tag: {{ add_printer_form.tag }} Description: {{ add_printer_form.description }}
CUPS Name: {{ add_printer_form.cups_name }} Printhead Type: {{ add_printer_form.printhead_type }}
Printer Type: {{ add_printer_form.type }} Orientation: {{ add_printer_form.orientation }}
{% csrf_token %}
Tag: {{ add_format_form.tag }} Description: {{ add_format_form.description }}
Label Type: {{ add_format_form.task_group }} Format Tags: (Front): {{ add_format_form.label_defn_name }}
(Back): {{ add_format_form.backside_label_defn_name }}
Width (in.): {{ add_format_form.width_in }} Height (in.): {{ add_format_form.height_in }}
DPI Width: {{ add_format_form.dpi_width }} DPI Height: {{ add_format_form.dpi_height }}
{% endblock %}