|
|
@ -68,7 +68,7 @@
|
|
|
|
<td>
|
|
|
|
<td>
|
|
|
|
<table>
|
|
|
|
<table>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td class="info_font" style=" word-wrap: break-word; word-break: break-all"><%= h @bid.name %></td>
|
|
|
|
<td class="info_font" style=" word-wrap: break-word; word-break: break-all"><%= link_to @bid.name,bid_path %></td>
|
|
|
|
</tr>
|
|
|
|
</tr>
|
|
|
|
<% if User.current.login? %>
|
|
|
|
<% if User.current.login? %>
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
@ -143,7 +143,7 @@
|
|
|
|
<% if @bid.watcher_users.size>0 %>
|
|
|
|
<% if @bid.watcher_users.size>0 %>
|
|
|
|
<% for user in @bid.watcher_users%>
|
|
|
|
<% for user in @bid.watcher_users%>
|
|
|
|
|
|
|
|
|
|
|
|
<%= image_tag(url_to_avatar(user), :class => "avatar", :title => user.name ) %>
|
|
|
|
<%= link_to image_tag(url_to_avatar(user), :class => "avatar", :title => user.name ),user_path(user) %>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
<% else %>
|
|
|
|
<p class="font_lighter"><%= l(:label_project_no_follow) %></p>
|
|
|
|
<p class="font_lighter"><%= l(:label_project_no_follow) %></p>
|
|
|
@ -164,8 +164,8 @@
|
|
|
|
<tr>
|
|
|
|
<tr>
|
|
|
|
<td style="padding-top: 5px">
|
|
|
|
<td style="padding-top: 5px">
|
|
|
|
<% if @bid.projects.size>0 %>
|
|
|
|
<% if @bid.projects.size>0 %>
|
|
|
|
<% for project in @bid.projects%>
|
|
|
|
<% for project in @bid.projects%>
|
|
|
|
<%= image_tag(url_to_avatar(project), :class => "avatar", :title => project.name) %>
|
|
|
|
<%= link_to image_tag(url_to_avatar(project), :class => "avatar", :title => project.name),project_path(project) %>
|
|
|
|
<% end%>
|
|
|
|
<% end%>
|
|
|
|
<% else %>
|
|
|
|
<% else %>
|
|
|
|
<p class="font_lighter"><%= l(:label_no_bid_project) %></p>
|
|
|
|
<p class="font_lighter"><%= l(:label_no_bid_project) %></p>
|
|
|
|