when there are no donors yet, draw less attention to that fact :P
This commit is contained in:
parent
be87039cba
commit
75e9fcbe5a
3 changed files with 19 additions and 19 deletions
|
@ -20,12 +20,13 @@ body.static-donate
|
|||
|
||||
background:
|
||||
image: url(http://images.neopets.com/new_shopkeepers/t_993.gif)
|
||||
position: ($container-width - 150px - 8px) -8px
|
||||
position: ($container-width - 150px - 8px) -4px
|
||||
repeat: no-repeat
|
||||
margin-top: 1em
|
||||
margin-bottom: 1.5em
|
||||
padding-bottom: 24px
|
||||
padding-bottom: 32px
|
||||
padding-left: 24px
|
||||
padding-top: 24px
|
||||
padding-top: 32px
|
||||
|
||||
header, div
|
||||
+inline-block
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
class StaticController < ApplicationController
|
||||
def donate
|
||||
# TODO: scope by campaign?
|
||||
@campaign = Campaign.current
|
||||
@donations = @campaign.donations.includes(features: :outfit).
|
||||
order('created_at DESC')
|
||||
|
|
|
@ -1,9 +1,9 @@
|
|||
- title "Support Dress to Impress"
|
||||
|
||||
- if @campaign.progress > 0
|
||||
= campaign_progress(@campaign) do
|
||||
We've received #{number_to_currency(@campaign.progress / 100.0)}
|
||||
toward our hosting costs this year.
|
||||
- if @campaign.progress > 0
|
||||
Thanks so much!
|
||||
|
||||
= form_tag donations_path, method: 'POST', id: 'donation-form',
|
||||
|
@ -61,8 +61,8 @@
|
|||
[aws]: http://aws.amazon.com/
|
||||
[matts_bat]: http://www.neopets.com/petlookup.phtml?pet=matts_bat
|
||||
|
||||
- if @donations.present?
|
||||
%h2 Thanks to our lovely donors!
|
||||
|
||||
%ul#outfits
|
||||
- @donations.each do |donation|
|
||||
- donation.features.each do |feature|
|
||||
|
|
Loading…
Reference in a new issue