Sha256: 0b3d05d5376cd0e100814b3ddcc09ad3d7645085bb73f21b057a1ee9b64a9f8c

Contents?: true

Size: 1.39 KB

Versions: 2

Compression:

Stored size: 1.39 KB

Contents

%table.table.table-condensed.table-striped
  %tr
    %th Project
    %td= link_to @contribution.project.name, admin_project_path(@contribution.project.id)
    %th Project Owner
    %td= link_to @contribution.project.user.full_name, admin_user_path(@contribution.project.user.id)
  %tr
    %th User
    %td= link_to @contribution.user.full_name, admin_user_path(@contribution.user.id)
    %th Email
    %td= @contribution.user.email
  %tr
    %th Country
    %td= @contribution.country ? @contribution.country.name : "-"
    %th State
    %td= @contribution.address_state
  %tr
    %th City
    %td= @contribution.address_city
    %th Zipcode
    %td= @contribution.address_zip
  %tr
    %th Street
    %td= @contribution.address_street
    %th Number
    %td= @contribution.address_number
  %tr
    %th Phone
    %td= @contribution.address_phone
    %th Anonymous
    %td= check_box "Anonymous", @contribution.anonymous, checked: @contribution.anonymous, disabled:true
  %tr
    %th Document
    %td= @contribution.document
    %th IP Address
    %td= @contribution.ip_address
  %tr
    %th Status
    %td= @contribution.status
    %th Step
    %td= @contribution.step
  %tr
    %th Credit Card Type
    %td= @contribution.card_type
    %th Credit Card Expiration Date
    %td= @contribution.card_expires_on.strftime("%m/%y") if @contribution.card_expires_on
  %tr
    %th Value
    %td= number_to_currency @contribution.value

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
hatchy-0.0.8.pre app/views/hatchy/admin/contributions/_basic_info.html.haml
hatchy-0.0.7.pre app/views/hatchy/admin/contributions/_basic_info.html.haml