Authorizations can now be used without an existing credit card
[monkeycharger.git] / trunk / app / views / credit_cards / show.html.erb
blobdf052fef2e600192db1fb80c4a057627d8c70967
1 <p>
2   <b>Name:</b>
3   <%=h @credit_card.name %>
4 </p>
6 <p>
7   <b>Number:</b>
8   <%=h @credit_card.number %>
9 </p>
11 <p>
12   <b>Card type:</b>
13   <%=h @credit_card.card_type %>
14 </p>
16 <p>
17   <b>Month:</b>
18   <%=h @credit_card.month %>
19 </p>
21 <p>
22   <b>Year:</b>
23   <%=h @credit_card.year %>
24 </p>
26 <p>
27   <b>Cvv:</b>
28   <%=h @credit_card.cvv %>
29 </p>
31 <p>
32   <b>Street address:</b>
33   <%=h @credit_card.street_address %>
34 </p>
36 <p>
37   <b>City:</b>
38   <%=h @credit_card.city %>
39 </p>
41 <p>
42   <b>State:</b>
43   <%=h @credit_card.state %>
44 </p>
46 <p>
47   <b>Country:</b>
48   <%=h @credit_card.country %>
49 </p>
51 <p>
52   <b>Zip:</b>
53   <%=h @credit_card.zip %>
54 </p>
57 <%= link_to 'Edit', edit_credit_card_path(@credit_card) %> |
58 <%= link_to 'Back', credit_cards_path %>