Content deleted Content added
No edit summary |
No edit summary |
||
Line 151:
-- Comparison of for against
local
-- Whether to use goal ratio (goal average) or goal percentage instead
local use_ratio_val = Args['use_goal_ratio'] or 'no'
Line 158:
if yesno(use_ratio_val) then
-- Now it is the goal ratio/goal average
if
else
end
elseif yesno(use_percentage_val) then
-- Now it is the percentage
if
else
end
else
|