mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-19 19:11:49 +02:00
Minor changes
This commit is contained in:
parent
703382cb1a
commit
50c203b4dc
16
app/static/manifest.webmanifest
Normal file
16
app/static/manifest.webmanifest
Normal file
@ -0,0 +1,16 @@
|
||||
{
|
||||
"name": "KaraoQueue",
|
||||
"short_name": "KaraoQueue",
|
||||
"start_url": "/",
|
||||
"display": "standalone",
|
||||
"background_color": "#343a40",
|
||||
"description": "Eine Karaokewarteliste.",
|
||||
"icons": [{
|
||||
"src": "images/touch/homescreen192.png",
|
||||
"sizes": "192x192",
|
||||
"type": "image/png"
|
||||
}],
|
||||
"related_applications": [{
|
||||
"platform": "Web"
|
||||
}]
|
||||
}
|
@ -7,6 +7,7 @@
|
||||
<meta name="description" content="">
|
||||
<meta name="author" content="">
|
||||
<link rel="icon" href="favicon.ico">
|
||||
<link rel="manifest" href="/static/manifest.webmanifest">
|
||||
|
||||
<title>{% block title %}{% endblock %} - KaraoQueue</title>
|
||||
|
||||
|
@ -3,6 +3,7 @@
|
||||
{% extends 'base.html' %}
|
||||
{% block title %}Home{% endblock %}
|
||||
{% block content %}
|
||||
<a role="button" class="btn btn-primary btn-lg btn-block" href="/list">Eintragen</a>
|
||||
<table class="table">
|
||||
<thead>
|
||||
<tr>
|
||||
|
@ -36,7 +36,7 @@
|
||||
<script>
|
||||
function confirmDeleteAllEntries() {
|
||||
bootbox.confirm({
|
||||
message: "Wirklich Abspielliste löschen?",
|
||||
message: "Wirklich Abspielliste löschen?<br>Stelle sicher, dass du sie vorher zwecks Abrechnung gedruckt und/oder heruntergeladen hast!",
|
||||
buttons: {
|
||||
confirm: {
|
||||
label: 'Ja',
|
||||
|
@ -47,6 +47,7 @@
|
||||
{% block extrajs %}
|
||||
<script>
|
||||
$(document).ready(function () {
|
||||
$("#filter").focus();
|
||||
$("#filter").keyup( function () {
|
||||
var value = $(this).val().toLowerCase();
|
||||
//alert(value);
|
||||
|
Loading…
x
Reference in New Issue
Block a user