% macro profile_goal_bar(p) % if p.goal and p.goal > 0
{{ _("Goal: {0}", p.goal) }} {{ _("Income: {0}/week", p.receiving) }} % set progress_cls = 'success' if p.receiving >= p.goal else 'info' % set width = min(int(p.receiving / p.goal * 100), 100)
{{ _("Mission accomplished!") if p.receiving >= p.goal else '' }}
% else

{{ _("Income: {0}/week", p.receiving) }}

% endif % endmacro % macro members_listing(participant) % from "templates/macros/avatar-url.html" import avatar_img with context
% for t in participant.get_current_takes_for_display()
{{ avatar_img(t) }} {{ t.member_name }}
% endfor
{{ _("View income shares") }}
% endmacro