Created
March 12, 2015 22:32
-
-
Save camkidman/7e61f7f8615cf5893b0d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"tabLabel" => "\\*Project Title", | |
"value" => pledge.project.title, | |
}, | |
{ | |
"tabLabel" => "\\*Investment Amount", | |
"value" => pledge.currency_pretty_amount, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Name", | |
"value" => pledge.project.owner.name, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Email", | |
"value" => pledge.project.owner.email, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Address 1", | |
"value" => pledge.project.owner.address, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Address 2", | |
"value" => "#{pledge.project.owner.city}, #{pledge.project.owner.state} #{pledge.project.owner.zip_code}", | |
}, | |
{ | |
"tabLabel" => "\\*Investor Address", | |
"value" => "#{pledge.pledger.address}, #{pledge.pledger.city}, #{pledge.pledger.state} #{pledge.pledger.zip_code}", | |
}, | |
{ | |
"tabLabel" => "\\*Investor City", | |
"value" => pledge.pledger.city, | |
}, | |
{ | |
"tabLabel" => "\\*Investor Name", | |
"value" => pledge.pledger.name, | |
}, | |
{ | |
"tabLabel" => "\\*Investor Email", | |
"value" => pledge.pledger.email, | |
}, | |
{ | |
"tabLabel" => "\\*Investor Phone", | |
"value" => pledge.pledger.phone, | |
}, | |
{ | |
"tabLabel" => "\\*Investor Entity", | |
"value" => pledge.pledger.company_name, | |
}, | |
{ | |
"tabLabel" => "\\*Investor Title", | |
"value" => investor_auth.company_title, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Title", | |
"value" => issuer_auth.company_title, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer LLC Name", | |
"value" => pledge.project.llc_name, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer LLC State", | |
"value" => pledge.project.llc_state, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer LLC Address 1", | |
"value" => pledge.project.llc_address, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer LLC Address 2", | |
"value" => "#{pledge.project.llc_city}, #{pledge.project.llc_state}", | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Entity Name", | |
"value" => pledge.project.llc_name, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Entity State", | |
"value" => pledge.project.llc_state, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Entity Address 1", | |
"value" => pledge.project.llc_address, | |
}, | |
{ | |
"tabLabel" => "\\*Issuer Entity Address 2", | |
"value" => "#{pledge.project.llc_city}, #{pledge.project.llc_state}", | |
}, | |
{ | |
"tabLabel" => "\\*Project Max Raise", | |
"value" => pledge.project.maximum_raise, | |
}, | |
{ | |
"tabLabel" => "\\*Project Min Raise", | |
"value" => pledge.project.target, | |
}, | |
{ | |
"tabLabel" => "\\*Project Start Date", | |
"value" => pledge.project.start_date.strftime('%b %e, %Y'), | |
}, | |
{ | |
"tabLabel" => "\\*Project End Date", | |
"value" => pledge.project.end_date.strftime('%b %e, %Y'), | |
}, | |
{ | |
"tabLabel" => "\\*Project Name", | |
"value" => pledge.project.title, | |
}, | |
{ | |
"tabLabel" => "\\*Available Shares", | |
"value" => pledge.project.available_shares, | |
}, | |
{ | |
"tabLabel" => "\\*Share Count", | |
"value" => pledge.shares_count, | |
}, | |
{ | |
"tabLabel" => "\\*Investor Tax ID Number", | |
"value" => pledge.investor.try(:tax_id_number), | |
}, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment