summaryrefslogtreecommitdiff
path: root/horizon/templatetags
diff options
context:
space:
mode:
authorDiana Whitten <hurgleburgler@gmail.com>2016-03-07 17:03:44 -0700
committerDiana Whitten <hurgleburgler@gmail.com>2016-06-08 18:25:23 +0000
commit2b67ae681bb47034174094b1980978ffd9c6f552 (patch)
tree14850dbeb878aa9306bd8897e3e67154de1de2b1 /horizon/templatetags
parent377da87e3cab513cbd238e5231a68ea56e2d791f (diff)
downloadhorizon-2b67ae681bb47034174094b1980978ffd9c6f552.tar.gz
Horizon selects are now themable: Launch Instance
Horizon was using a standard select input. Unfortunately, this type of input is only customizable to a small extent. Co-Authored-By: Ryan Peters <rjpeter2@gmail.com> Co-Authored-By: Matthew Wood <woodm1979@gmail.com> Co-Authored-By: Brian Tully <brian.tully@hp.com> Change-Id: Iaf8427c3fff6d2fbfae944731fd9f6f754ed7c31 Partially-implements: blueprint horizon-theme-css-reorg
Diffstat (limited to 'horizon/templatetags')
-rw-r--r--horizon/templatetags/horizon.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/horizon/templatetags/horizon.py b/horizon/templatetags/horizon.py
index d2d99b1c3..c9d2c764d 100644
--- a/horizon/templatetags/horizon.py
+++ b/horizon/templatetags/horizon.py
@@ -38,7 +38,7 @@ class MinifiedNode(Node):
def render(self, context):
return ' '.join(
force_text(self.nodelist.render(context).strip()).split()
- )
+ ).replace(' > ', '>').replace(' <', '<')
@register.filter