mirror of
https://github.com/akuker/RASCSI.git
synced 2025-08-07 15:25:54 +00:00
Switch to the basic stylesheet
This commit is contained in:
@@ -21,7 +21,7 @@ a {
|
|||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
form.table {
|
form {
|
||||||
display: inline;
|
display: inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@@ -21,7 +21,6 @@
|
|||||||
<meta name="theme-color" content="#ffffff">
|
<meta name="theme-color" content="#ffffff">
|
||||||
|
|
||||||
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.9.3/min/dropzone.min.css"/>
|
|
||||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.9.3/min/basic.min.css"/>
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.9.3/min/basic.min.css"/>
|
||||||
|
|
||||||
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.9.3/min/dropzone.min.js">
|
<script type="application/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/dropzone/5.9.3/min/dropzone.min.js">
|
||||||
|
@@ -3,7 +3,7 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<h2>Current RaSCSI Configuration</h2>
|
<h2>Current RaSCSI Configuration</h2>
|
||||||
<p>
|
<p>
|
||||||
<form action="/config/load" method="post" class="table">
|
<form action="/config/load" method="post">
|
||||||
<select name="name" >
|
<select name="name" >
|
||||||
{% for config in config_files %}
|
{% for config in config_files %}
|
||||||
<option value="{{config}}">{{config.replace(".json", '')}}</option>
|
<option value="{{config}}">{{config.replace(".json", '')}}</option>
|
||||||
@@ -14,11 +14,11 @@
|
|||||||
</form>
|
</form>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<form action="/config/save" method="post" class="table">
|
<form action="/config/save" method="post">
|
||||||
<input name="name" placeholder="default">
|
<input name="name" placeholder="default">
|
||||||
<input type="submit" value="Save" />
|
<input type="submit" value="Save" />
|
||||||
</form>
|
</form>
|
||||||
<form action="/scsi/detach_all" method="post" class="table" onsubmit="return confirm('Detach all SCSI Devices?')">
|
<form action="/scsi/detach_all" method="post" onsubmit="return confirm('Detach all SCSI Devices?')">
|
||||||
<input type="submit" value="Detach All" />
|
<input type="submit" value="Detach All" />
|
||||||
</form>
|
</form>
|
||||||
</p>
|
</p>
|
||||||
@@ -48,20 +48,20 @@
|
|||||||
{% endif %}
|
{% endif %}
|
||||||
<td style="text-align:left">
|
<td style="text-align:left">
|
||||||
{% if device.device_type in removable_device_types and "No Media" not in device.status %}
|
{% if device.device_type in removable_device_types and "No Media" not in device.status %}
|
||||||
<form action="/scsi/eject" method="post" class="table" onsubmit="return confirm('Eject Disk?')">
|
<form action="/scsi/eject" method="post" onsubmit="return confirm('Eject Disk?')">
|
||||||
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
||||||
<input type="submit" value="Eject" />
|
<input type="submit" value="Eject" />
|
||||||
</form>
|
</form>
|
||||||
<form action="/scsi/info" method="post" class="table">
|
<form action="/scsi/info" method="post">
|
||||||
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
||||||
<input type="submit" value="Info" />
|
<input type="submit" value="Info" />
|
||||||
</form>
|
</form>
|
||||||
{% else %}
|
{% else %}
|
||||||
<form action="/scsi/detach" method="post" class="table" onsubmit="return confirm('Detach Disk?')">
|
<form action="/scsi/detach" method="post" onsubmit="return confirm('Detach Disk?')">
|
||||||
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
||||||
<input type="submit" value="Detach" />
|
<input type="submit" value="Detach" />
|
||||||
</form>
|
</form>
|
||||||
<form action="/scsi/info" method="post" class="table">
|
<form action="/scsi/info" method="post">
|
||||||
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
<input type="hidden" name="scsi_id" value="{{device.id}}">
|
||||||
<input type="submit" value="Info" />
|
<input type="submit" value="Info" />
|
||||||
</form>
|
</form>
|
||||||
@@ -93,13 +93,13 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>{{file["name"].replace(base_dir, '')}}</td>
|
<td>{{file["name"].replace(base_dir, '')}}</td>
|
||||||
<td style="text-align:center">
|
<td style="text-align:center">
|
||||||
<form action="/files/download" method="post" class="table">
|
<form action="/files/download" method="post">
|
||||||
<input type="hidden" name="image" value="{{file["name"].replace(base_dir, '')}}">
|
<input type="hidden" name="image" value="{{file["name"].replace(base_dir, '')}}">
|
||||||
<input type="submit" value="{{file["size_mb"]}} MB ↓" />
|
<input type="submit" value="{{file["size_mb"]}} MB ↓" />
|
||||||
</form>
|
</form>
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<form action="/scsi/attach" method="post" class="table">
|
<form action="/scsi/attach" method="post">
|
||||||
<input type="hidden" name="file_name" value="{{file["name"]}}">
|
<input type="hidden" name="file_name" value="{{file["name"]}}">
|
||||||
<input type="hidden" name="file_size" value="{{file["size"]}}">
|
<input type="hidden" name="file_size" value="{{file["size"]}}">
|
||||||
<select name="scsi_id">
|
<select name="scsi_id">
|
||||||
@@ -111,12 +111,12 @@
|
|||||||
<input type="submit" value="Attach" />
|
<input type="submit" value="Attach" />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</form>
|
</form>
|
||||||
<form action="/files/delete" method="post" class="table" onsubmit="return confirm('Delete file?')">
|
<form action="/files/delete" method="post" onsubmit="return confirm('Delete file?')">
|
||||||
<input type="hidden" name="image" value="{{file["name"].replace(base_dir, '')}}">
|
<input type="hidden" name="image" value="{{file["name"].replace(base_dir, '')}}">
|
||||||
<input type="submit" value="Delete" />
|
<input type="submit" value="Delete" />
|
||||||
</form>
|
</form>
|
||||||
{% if file["name"].lower().endswith(archive_file_suffix) %}
|
{% if file["name"].lower().endswith(archive_file_suffix) %}
|
||||||
<form action="/files/unzip" method="post" class="table">
|
<form action="/files/unzip" method="post">
|
||||||
<input type="hidden" name="image" value="{{file["name"].replace(base_dir, '')}}">
|
<input type="hidden" name="image" value="{{file["name"].replace(base_dir, '')}}">
|
||||||
<input type="submit" value="Unzip" />
|
<input type="submit" value="Unzip" />
|
||||||
</form>
|
</form>
|
||||||
@@ -213,7 +213,7 @@
|
|||||||
<tr style="border: none">
|
<tr style="border: none">
|
||||||
<td style="border: none; vertical-align:top;">
|
<td style="border: none; vertical-align:top;">
|
||||||
<label for="scsi_id">SCSI ID:</label>
|
<label for="scsi_id">SCSI ID:</label>
|
||||||
<form action="/files/download_to_iso" method="post" class="table">
|
<form action="/files/download_to_iso" method="post">
|
||||||
<select name="scsi_id">
|
<select name="scsi_id">
|
||||||
{% for id in scsi_ids %}
|
{% for id in scsi_ids %}
|
||||||
<option value="{{id}}">{{id}}</option>
|
<option value="{{id}}">{{id}}</option>
|
||||||
@@ -233,7 +233,7 @@
|
|||||||
<table style="border: none">
|
<table style="border: none">
|
||||||
<tr style="border: none">
|
<tr style="border: none">
|
||||||
<td style="border: none; vertical-align:top;">
|
<td style="border: none; vertical-align:top;">
|
||||||
<form action="/files/create" method="post" class="table">
|
<form action="/files/create" method="post">
|
||||||
<label for="file_name">File Name:</label>
|
<label for="file_name">File Name:</label>
|
||||||
<input type="text" placeholder="File name" name="file_name"/>
|
<input type="text" placeholder="File name" name="file_name"/>
|
||||||
<label for="type">Type:</label>
|
<label for="type">Type:</label>
|
||||||
@@ -286,7 +286,7 @@
|
|||||||
<table style="border: none">
|
<table style="border: none">
|
||||||
<tr style="border: none">
|
<tr style="border: none">
|
||||||
<td style="border: none; vertical-align:top;">
|
<td style="border: none; vertical-align:top;">
|
||||||
<form action="/logs/level" method="post" class="table">
|
<form action="/logs/level" method="post">
|
||||||
<label for="level">Log Level:</label>
|
<label for="level">Log Level:</label>
|
||||||
<select name="level">
|
<select name="level">
|
||||||
{% for level in server_info["log_levels"] %}
|
{% for level in server_info["log_levels"] %}
|
||||||
|
Reference in New Issue
Block a user