32 lines
970 B
Plaintext
32 lines
970 B
Plaintext
<!-- fq -->
|
||
<table width="660px" border="0" align="center">
|
||
<tr>
|
||
<td width="50" valign="top"><%= link_to image_tag(url_to_avatar(@bid.author), :class => "avatar"), user_path(@bid.author), :class => "avatar" %></td>
|
||
<td><table width="100%" border="0">
|
||
<tr>
|
||
<td><h3><%= link_to(@bid.author.name, user_path(@bid.author))%>:<%= @bid.name %></h3></td>
|
||
</tr>
|
||
<tr>
|
||
<td class="font_lighter"><%= l(:label_price) %><%= @bid.budget %></td>
|
||
</tr>
|
||
</table></td>
|
||
</tr>
|
||
</table>
|
||
<div class="bid-description" style="border-bottom: 1px solid rgb(225, 225, 225); margin-bottom: 20px; padding-bottom: 20px;">
|
||
<table border="0" width="600px" align="center">
|
||
<tr>
|
||
<td></td>
|
||
</tr>
|
||
<tr><td style="font-size: 15px; color: rgb(0,0,0);"><%= @bid.description %></td></tr>
|
||
</table>
|
||
</div>
|
||
|
||
|
||
|
||
<div id="history">
|
||
<%= render :partial => 'history', :locals => { :bid => @bid, :journals => @jour, :state => false} %>
|
||
</div>
|
||
|
||
|
||
<!-- end -->
|