- imptune/api/printers.py: POST /printers (all form fields, checkbox->bool,
FK resolution), DELETE /printers/{id}, grouped list renderer with LEFT JOIN
- imptune/api/clients.py: POST /clients with duplicate-name handling
- imptune/api/pages.py: GET /printers and GET /clients page routes
- imptune/main.py: register printers + clients routers; close db on shutdown
- imptune/db/database.py: close existing connection before re-init (test isolation)
- templates: printers.html, clients.html, printer_form.html (Alpine.js port
auto-derivation), printer_list.html (grouped by client), client_list.html
- tests/conftest.py: close test-thread db connection in fixture teardown
- tests/test_printer_crud.py: updated to use list(select().where()) for DB
queries (avoids Peewee thread-local cursor caching across test boundaries)
Auto-fix [Rule 1 - Bug]: DB test isolation — Peewee thread-local connections
persisted across tests causing stale DB reads; fixed via conftest teardown and
lifespan db.close() on shutdown.
87 lines
3.0 KiB
HTML
87 lines
3.0 KiB
HTML
<div x-data="{ ip: '{{ printer.ip_address if printer else '' }}', port: '{{ printer.port_name if printer else '' }}', portEdited: {{ 'true' if printer else 'false' }} }">
|
|
<form hx-post="/printers" hx-target="#printer-list" hx-swap="outerHTML">
|
|
|
|
<label>
|
|
Printer Name
|
|
<input type="text" name="name" placeholder="e.g. HP LaserJet 4050" required
|
|
value="{{ printer.name if printer else '' }}">
|
|
</label>
|
|
|
|
<label>
|
|
IP Address
|
|
<input type="text" name="ip_address"
|
|
x-model="ip"
|
|
@input="if (!portEdited) port = 'IP_' + ip.replaceAll('.', '_')"
|
|
placeholder="e.g. 192.168.1.100"
|
|
required>
|
|
</label>
|
|
|
|
<label>
|
|
Port Name
|
|
<input type="text" name="port_name"
|
|
x-model="port"
|
|
@change="portEdited = true"
|
|
@keydown="portEdited = true"
|
|
placeholder="e.g. IP_192_168_1_100">
|
|
</label>
|
|
|
|
<label>
|
|
Driver
|
|
<select name="driver_id">
|
|
<option value="">-- No driver --</option>
|
|
{% for item in driver_data %}
|
|
<option value="{{ item.driver.id }}"
|
|
{% if printer and printer.driver_id == item.driver.id %}selected{% endif %}>
|
|
{{ item.driver.original_filename }} ({{ item.names | join(', ') }})
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</label>
|
|
|
|
<label>
|
|
Duplex Mode
|
|
<select name="duplex_mode">
|
|
<option value="OneSided" {% if not printer or printer.duplex_mode == 'OneSided' %}selected{% endif %}>One-Sided</option>
|
|
<option value="LongEdge" {% if printer and printer.duplex_mode == 'LongEdge' %}selected{% endif %}>Long Edge</option>
|
|
<option value="ShortEdge" {% if printer and printer.duplex_mode == 'ShortEdge' %}selected{% endif %}>Short Edge</option>
|
|
</select>
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox" name="color_mode" value="on"
|
|
{% if not printer or printer.color_mode %}checked{% endif %}>
|
|
Color Mode
|
|
</label>
|
|
|
|
<label>
|
|
Paper Size
|
|
<select name="paper_size">
|
|
<option value="A4" {% if not printer or printer.paper_size == 'A4' %}selected{% endif %}>A4</option>
|
|
<option value="Letter" {% if printer and printer.paper_size == 'Letter' %}selected{% endif %}>Letter</option>
|
|
<option value="Legal" {% if printer and printer.paper_size == 'Legal' %}selected{% endif %}>Legal</option>
|
|
</select>
|
|
</label>
|
|
|
|
<label>
|
|
<input type="checkbox" name="collate" value="on"
|
|
{% if not printer or printer.collate %}checked{% endif %}>
|
|
Collate
|
|
</label>
|
|
|
|
<label>
|
|
Client
|
|
<select name="client_id">
|
|
<option value="">-- Unassigned --</option>
|
|
{% for c in clients %}
|
|
<option value="{{ c.id }}"
|
|
{% if printer and printer.client_id == c.id %}selected{% endif %}>
|
|
{{ c.name }}
|
|
</option>
|
|
{% endfor %}
|
|
</select>
|
|
</label>
|
|
|
|
<button type="submit">Save Printer</button>
|
|
</form>
|
|
</div>
|