diff --git a/ladder/templates/ladder_entry.html b/ladder/templates/ladder_entry.html
index af045c0..04de30b 100644
--- a/ladder/templates/ladder_entry.html
+++ b/ladder/templates/ladder_entry.html
@@ -93,7 +93,7 @@
DPS |
Damage |
Time |
-
Build |
+
Highest Damage Ability |
Group Size |
|
diff --git a/ui/static/img/chevron-down.svg b/ui/static/img/chevron-down.svg
new file mode 100644
index 0000000..9c804a9
--- /dev/null
+++ b/ui/static/img/chevron-down.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/ui/static/img/chevron-right.svg b/ui/static/img/chevron-right.svg
new file mode 100644
index 0000000..fed7f33
--- /dev/null
+++ b/ui/static/img/chevron-right.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/ui/templatetags/core.py b/ui/templatetags/core.py
new file mode 100644
index 0000000..b093b33
--- /dev/null
+++ b/ui/templatetags/core.py
@@ -0,0 +1,20 @@
+"""Core Template Tags"""
+
+import logging
+
+from django import template
+
+register = template.Library()
+LOGGER = logging.getLogger("django")
+
+
+@register.filter
+def get(mapping, key):
+ """Get from Dictionary"""
+ return mapping.get(key)
+
+
+@register.filter
+def percentage(value):
+ """Format as a percentage"""
+ return float(value) * 100
diff --git a/ui/templatetags/ladder.py b/ui/templatetags/ladder.py
index 264d48e..613cc33 100644
--- a/ui/templatetags/ladder.py
+++ b/ui/templatetags/ladder.py
@@ -1,4 +1,4 @@
-""" Ladder Template Tags """
+"""Ladder Template Tags"""
import logging