# HG changeset patch # User bsw # Date 1330543730 -3600 # Node ID a34c8c5a485303f64113280a461745302e7331fc # Parent 14929096532c34e1902faf684081b66b30fd3bc2 Show direct majority in policy listing diff -r 14929096532c -r a34c8c5a4853 app/main/policy/list.lua --- a/app/main/policy/list.lua Wed Feb 29 20:15:33 2012 +0100 +++ b/app/main/policy/list.lua Wed Feb 29 20:28:50 2012 +0100 @@ -52,8 +52,8 @@ value = "≥ " .. tostring(policy.initiative_quorum_num) .. "/" .. tostring(policy.initiative_quorum_den) } ui.field.text{ - label = _"Majority" .. ":", - value = (policy.majority_strict and ">" or "≥" ) .. " " .. tostring(policy.majority_num) .. "/" .. tostring(policy.majority_den) + label = _"majority" .. ":", + value = (policy.direct_majority_strict and ">" or "≥" ) .. " " .. tostring(policy.direct_majority_num) .. "/" .. tostring(policy.direct_majority_den) } end },