diff --git a/style/base/base.scss b/style/base/base.scss index 0304e892f0..192d7cb830 100644 --- a/style/base/base.scss +++ b/style/base/base.scss @@ -129,6 +129,16 @@ body { } } +.btn-report { + $base-color: #aaa; + background-color: $base-color; + color: #1a171b; + &:hover { + background-color: #f00; + color: #fff; + } +} + input.amount { min-width: 5em; max-width: 8em; diff --git a/templates/profile.html b/templates/profile.html index 062c98b312..d7295db1d0 100644 --- a/templates/profile.html +++ b/templates/profile.html @@ -97,6 +97,9 @@
{{ _( + "{0} currently receives {1} per week, they need your help to reach " + "their funding goal ({2} per week)." + , participant.username, receiving, goal + ) }}
+ % else +{{ _( + "{0}'s goal is to receive {1} per week." + , participant.username, goal + ) }} {{ _("Be the first to contribute!") }}
+ % endif + % else +{{ _( + "{0} currently receives {1} per week." + , participant.username, receiving + ) }}
+ % endif + % endif + +{{ _( + "We have confirmed through an automated verification process that " + "{0} has control of the following accounts on other platforms:", + participant.username + ) }}
+ % for platform in website.platforms if platform.name in e_accounts + {{ account_elsewhere(platform, e_accounts, None) }} + % endfor +{{ _( + "Please describe why you want to report this account:" + ) }}
+ +