Commit 1b1d9c16 authored by Alan Hamlett's avatar Alan Hamlett

use circle-o for rendering unchecked booleans

parent 3643d788
...@@ -36,7 +36,7 @@ def bool_formatter(view, value): ...@@ -36,7 +36,7 @@ def bool_formatter(view, value):
Value to check Value to check
""" """
glyph = 'ok-circle' if value else 'minus-sign' glyph = 'ok-circle' if value else 'minus-sign'
fa = 'check-circle' if value else 'minus-circle' fa = 'check-circle' if value else 'circle-o'
return Markup('<span class="fa fa-%s glyphicon glyphicon-%s icon-%s"></span>' % (fa, glyph, glyph)) return Markup('<span class="fa fa-%s glyphicon glyphicon-%s icon-%s"></span>' % (fa, glyph, glyph))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment