1
Fork 0
mirror of https://github.com/RYGhub/song.git synced 2024-10-16 12:17:27 +00:00

Remove 3 word limit

This commit is contained in:
Steffo 2017-09-23 19:36:43 +02:00
parent 2521e7a912
commit b19d8e8a73
No known key found for this signature in database
GPG key ID: C27544372FBB445D
2 changed files with 1 additions and 3 deletions

View file

@ -26,8 +26,7 @@ def page_main():
else:
done = False
session["last_entry"] = None
last_words = db.engine.execute("SELECT * FROM song ORDER BY time DESC LIMIT 3").fetchall()
last_words.reverse()
last_words = db.engine.execute("SELECT * FROM song ORDER BY time").fetchall()
return render_template("song.html", last_words=last_words, done=done)
elif request.method == "POST":
if session.get("last_entry") and session["last_entry"] < dt.datetime.now() + dt.timedelta(1):

View file

@ -27,7 +27,6 @@
Puoi aggiungere una parola una volta al giorno.
</h3>
<div>
...
{% for word in last_words %}
<span class="word" id="last-word-{{ loop.index }}">{{ word[2] }}</span>
{% endfor %}