13 lines
372 B
HTML
13 lines
372 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block content %}
|
|
<h1 x-data x-text="$store.i18n.t('printers')">Printers</h1>
|
|
|
|
<p><a href="/printers/new" role="button" x-data x-text="$store.i18n.t('add_printer')">Add Printer</a></p>
|
|
|
|
<section>
|
|
<h2 x-data x-text="$store.i18n.t('printer_library')">Printer Library</h2>
|
|
{% include "partials/printer_list.html" %}
|
|
</section>
|
|
{% endblock %}
|