{% block content %}{% endblock %}
diff --git a/templates/admin_song_detail.html b/templates/admin_song_detail.html
index 27132f3..9c860ae 100644
--- a/templates/admin_song_detail.html
+++ b/templates/admin_song_detail.html
@@ -1,8 +1,8 @@
{% extends 'admin.html' %}
{% block content %}
{{ song.title }} (ID: {{ song.id }})
-{% for message in get_flashed_messages() %}
-
{{ message }}
+{% for cat, message in get_flashed_messages(with_categories=true) %}
+
{{ message }}
{% endfor %}
+
+
{% if admin.user_level >= 100 %}
@@ -124,3 +129,4 @@
{% endif %}
{% endblock %}
+