~mparic/+junk/openauctionlive

« back to all changes in this revision

Viewing changes to app/views/bidders/view.ctp

  • Committer: Michael Paric
  • Date: 2012-01-07 20:21:14 UTC
  • Revision ID: mparic@compbizsolutions.com-20120107202114-6q89jiel6y3rbwgc
Updated validation rules to prevent duplicate Bid and Bidder entries; updated return message color for successful form entry to differentiate from error; added simlink in img/ for image to be used in reports - just change what auction_logo.jpg points to instead of changing View code.

Show diffs side-by-side

added added

removed removed

Lines of Context:
97
97
                <tr<?php echo $class;?>>
98
98
                        <td><?php echo $this->Html->link($bid['item_id'],'/bids/edit/' . $bid['id']);?></td>
99
99
                        <td><?php echo $this->Html->link($bid['Item']['title'],'/items/view/' . $bid['item_id']);?></td>
100
 
                        <td><?php echo $this->Number->currency($bid['bid_amount']);?></td>
 
100
                        <td><?php echo $this->Html->link($this->Number->currency($bid['bid_amount']),'/bids/edit/' . $bid['id']);?></td>
101
101
                        <td><?php echo $bid['created'];?></td>
102
102
                </tr>
103
103
        <?php endforeach; ?>