26 lines
991 B
HTML
26 lines
991 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
<h1 x-data x-text="$store.i18n.t('drivers_title')">Drivers</h1>
|
|
|
|
<section>
|
|
<h2 x-data x-text="$store.i18n.t('upload_driver_section')">Upload Driver Package</h2>
|
|
<form
|
|
hx-post="/drivers/upload"
|
|
hx-encoding="multipart/form-data"
|
|
hx-target="#driver-list"
|
|
hx-swap="outerHTML"
|
|
hx-indicator="#upload-spinner"
|
|
>
|
|
<label for="driver-file" x-data x-text="$store.i18n.t('driver_package_label')">Driver Package (ZIP containing .inf + driver files)</label>
|
|
<input type="file" id="driver-file" name="file" accept=".zip" required>
|
|
<button type="submit" x-data x-text="$store.i18n.t('upload_btn')">Upload</button>
|
|
<span id="upload-spinner" class="htmx-indicator" aria-busy="true" x-data x-text="$store.i18n.t('uploading')">Uploading...</span>
|
|
</form>
|
|
</section>
|
|
|
|
<section>
|
|
<h2 x-data x-text="$store.i18n.t('driver_library')">Driver Library</h2>
|
|
{% include "partials/driver_list.html" %}
|
|
</section>
|
|
{% endblock %}
|