Compare commits

...

2 commits

Author SHA1 Message Date
e5bdad65df Merge pull request 'KA CHING!' (#39) from nmeum/matekasse:ka-ching into master
Reviewed-on: #39
2024-09-11 17:00:50 +00:00
Sören Tempel
71ddc32f49 KA CHING! 2024-09-09 10:12:24 +02:00
4 changed files with 22 additions and 1 deletions

View file

@ -57,6 +57,10 @@ def create_app(test_config=None):
def socketiojs(): def socketiojs():
return send_file('../static/socket.io.js') return send_file('../static/socket.io.js')
@app.route('/ka-ching.wav')
def kaching():
return send_file('../static/ka-ching.wav')
@app.route('/new.css') @app.route('/new.css')
def newcss(): def newcss():
return send_file('../static/new.min.css') return send_file('../static/new.min.css')

View file

@ -8,6 +8,7 @@
></script> ></script>
<link rel="stylesheet" href="/new.css"> <link rel="stylesheet" href="/new.css">
<link rel="prefetch" href="/ka-ching.wav" />
<link rel="shortcut icon" type="Logo/png" href="/ccc_logo.png"/> <link rel="shortcut icon" type="Logo/png" href="/ccc_logo.png"/>
{% block customscript %}{% endblock %} {% block customscript %}{% endblock %}
</head> </head>

View file

@ -4,6 +4,21 @@ Strichliste
{% endblock %} {% endblock %}
{% block customscript %} {% block customscript %}
<script type="text/javascript" charset="utf-8"> <script type="text/javascript" charset="utf-8">
function play() {
return new Promise((resolve, reject) => {
var audio = new Audio('/ka-ching.wav');
audio.play();
audio.addEventListener("ended", function(){
resolve()
});
});
}
async function ka_ching(element) {
await play();
element.parentElement.submit();
}
var socket = io(); var socket = io();
socket.on("update", function () { socket.on("update", function () {
window.location = "http://matekasse.server.c3h/list" window.location = "http://matekasse.server.c3h/list"
@ -28,7 +43,8 @@ Strichliste
</form> </form>
<form action="/change" method="post" style="display: inline"> <form action="/change" method="post" style="display: inline">
<input name="id" type="hidden" value="{{user[0]}}"> <input name="id" type="hidden" value="{{user[0]}}">
<button type="submit" name="change" value={{preis}}>{{preis}}€</button> <input name="change" value={{preis}} type="hidden">
<button onclick="ka_ching(this)" type="button">{{preis}}€</button>
</form> </form>
<br style="line-height: 50%;"></br> <br style="line-height: 50%;"></br>
{% endfor %} {% endfor %}

BIN
static/ka-ching.wav Normal file

Binary file not shown.