Minor changes

This commit is contained in:
Phillip Kühne 2019-06-29 02:42:38 +02:00
parent 703382cb1a
commit 50c203b4dc
5 changed files with 20 additions and 1 deletions

View 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"
}]
}

View File

@ -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>

View File

@ -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>

View File

@ -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',

View File

@ -47,6 +47,7 @@
{% block extrajs %}
<script>
$(document).ready(function () {
$("#filter").focus();
$("#filter").keyup( function () {
var value = $(this).val().toLowerCase();
//alert(value);