Unverified Commit b6d32452 authored by Serge S. Koval's avatar Serge S. Koval Committed by GitHub

Merge pull request #1899 from alanhamlett/master

use circle-o for rendering unchecked booleans
parents 286a1dcb 1b1d9c16
......@@ -36,7 +36,7 @@ def bool_formatter(view, value):
Value to check
"""
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))
......
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