diff --git a/iwm_browser/templates/levelInfo.html b/iwm_browser/templates/levelInfo.html
index 39d0256..f325805 100644
--- a/iwm_browser/templates/levelInfo.html
+++ b/iwm_browser/templates/levelInfo.html
@@ -31,7 +31,7 @@
{{ map['Name'] }}
Difficulty: {{ '▲' * map['AverageUserDifficulty']|int }}
-
by {{ map['CreatorName'] }}
+
{{ map['NumThumbsUp'] }} 👍 {{ map['NumThumbsDown'] }} 👎
{% if map['Description'] != ''%}
{{ map['Description'] }}
{% endif %}
Code:
diff --git a/iwm_browser/templates/search.html b/iwm_browser/templates/search.html
index c390101..3b2b37f 100644
--- a/iwm_browser/templates/search.html
+++ b/iwm_browser/templates/search.html
@@ -66,7 +66,7 @@
Difficulty: {{ '▲' * map['AverageUserDifficulty']|int }}
-
by {{ map['CreatorName'] }}
+
{{ map['NumThumbsUp'] }} 👍 {{ map['NumThumbsDown'] }} 👎
{% if map['Description'] != ''%}
{{ map['Description'] }}
{% endif %}
Code: