mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-07-04 01:01:41 +02:00
style fixes
This commit is contained in:
@ -3,15 +3,15 @@
|
|||||||
{% block content %}
|
{% block content %}
|
||||||
<form method="post">
|
<form method="post">
|
||||||
<p>
|
<p>
|
||||||
<input type="number" id="entryquota" name="entryquota" min=1 value={{app.config['ENTRY_QUOTA']}}>
|
|
||||||
<label for="entryquota">Maximale Anzahl an Einträgen pro Nutzer</label>
|
<label for="entryquota">Maximale Anzahl an Einträgen pro Nutzer</label>
|
||||||
|
<input type="number" class="form-control" id="entryquota" name="entryquota" min=1 value={{app.config['ENTRY_QUOTA']}}>
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p>
|
||||||
<input type="number" id="maxqueue" name="maxqueue" min=1 value={{app.config['MAX_QUEUE']}}>
|
|
||||||
<label for="maxqueue">Maximale Anzahl an Einträgen Insgesamt</label>
|
<label for="maxqueue">Maximale Anzahl an Einträgen Insgesamt</label>
|
||||||
|
<input type="number" class="form-control" id="maxqueue" name="maxqueue" min=1 value={{app.config['MAX_QUEUE']}}>
|
||||||
</p>
|
</p>
|
||||||
<input type="submit" value="Einstellungen anwenden">
|
<input type="submit" class="btn btn-primary mr-1 mb-2" value="Einstellungen anwenden">
|
||||||
<input type="button" onclick="$.get('/writeSettings').done(()=>{alert('Einstellungen gespeichert')}).fail(()=>{alert('Fehler beim Speichern der Einstellungen')})" value="Einstellungen speichern"/>
|
<input type="button" class="btn btn-default mr-1 mb-2" onclick="$.get('/writeSettings').done(()=>{alert('Einstellungen gespeichert')}).fail(()=>{alert('Fehler beim Speichern der Einstellungen')})" value="Einstellungen speichern"/>
|
||||||
</form>
|
</form>
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
{% block extrajs %}
|
{% block extrajs %}
|
||||||
|
Reference in New Issue
Block a user