diff --git a/coldfront/core/allocation/templates/allocation/allocation_detail.html b/coldfront/core/allocation/templates/allocation/allocation_detail.html
index b459f0488..2f072823c 100644
--- a/coldfront/core/allocation/templates/allocation/allocation_detail.html
+++ b/coldfront/core/allocation/templates/allocation/allocation_detail.html
@@ -337,6 +337,7 @@
Users in Al
+
-
- {% if notes %}
+
+
+
+
+
-
+
Note |
+ Tag |
Administrator |
Last Modified |
@@ -364,7 +377,8 @@ Notificatio
{% for note in notes %}
{% if not note.is_private or request.user.is_superuser %}
- {{ note.note }} |
+ {{ note.message }} |
+ {{ note.tags }} |
{{ note.author.first_name }} {{ note.author.last_name }} |
{{ note.modified }} |
@@ -372,14 +386,42 @@ Notificatio
{% endfor %}
-
- {% else %}
-
- There are no notes from system administrators.
-
- {% endif %}
+
+ {% for note_tag in note_tags %}
+
+
+
+
+
+ Note |
+ Tag |
+ Administrator |
+ Last Modified |
+
+
+
+ {% for note in notes %}
+ {% if not note.is_private or request.user.is_superuser %}
+
+ {{ note.message }} |
+ {{ note.tags }} |
+ {{ note.author.first_name }} {{ note.author.last_name }} |
+ {{ note.modified }} |
+
+ {% endif %}
+ {% endfor %}
+
+
+
+ {% endfor %}
+
+
+
+
+
+