diff --git a/app/views/layouts/base_bids.html.erb b/app/views/layouts/base_bids.html.erb index 03717da65..eff2cd6f7 100644 --- a/app/views/layouts/base_bids.html.erb +++ b/app/views/layouts/base_bids.html.erb @@ -62,9 +62,9 @@
- <%= link_to l(:label_followers)+"("+@bid.watcher_users.count.to_s+")", respond_path(@bid) %>   + <%= link_to l(:label_x_followers, :count => @bid.watcher_users.count)+"("+@bid.watcher_users.count.to_s+")", respond_path(@bid) %>   <%= link_to l(:label_bidding_project)+"("+@bid.biding_projects.count.to_s+")", project_for_bid_path(@bid) %>  - <%= link_to l(:label_responses)+"("+@bid.commit.to_s+")", respond_path(@bid)%> + <%= link_to l(:label_x_responses, :count => @bid.commit)+"("+@bid.commit.to_s+")", respond_path(@bid)%>
@@ -82,7 +82,7 @@
- <%= l(:label_followers) %> + <%= l(:label_x_followers, :count => @bid.watcher_users.count) %>
diff --git a/app/views/users/watch_bids.html.erb b/app/views/users/watch_bids.html.erb index 749245741..88b2c595b 100644 --- a/app/views/users/watch_bids.html.erb +++ b/app/views/users/watch_bids.html.erb @@ -29,9 +29,9 @@ - <%= l(:label_biding_project) %>(<%=link_to bid.biding_projects.count, project_for_bid_path(bid) %>) - <%= l(:label_responses) %>(<%=link_to bid.commit, respond_path(bid) %>) - <%= l(:label_followers) %>(<%=link_to bid.watcher_users.count, respond_path(bid) %>) + <%= l(:label_x_biding_project, :count => bid.biding_projects.count) %>(<%=link_to bid.biding_projects.count, project_for_bid_path(bid) %>) + <%= l(:label_x_responses, :count => bid.commit) %>(<%=link_to bid.commit, respond_path(bid) %>) + <%= l(:label_x_followers, :count => bid.watcher_users.count) %>(<%=link_to bid.watcher_users.count, respond_path(bid) %>) diff --git a/public/themes/redpenny-master/stylesheets/application.css b/public/themes/redpenny-master/stylesheets/application.css index 3c9e21a6b..8fa8fdd3f 100644 --- a/public/themes/redpenny-master/stylesheets/application.css +++ b/public/themes/redpenny-master/stylesheets/application.css @@ -1103,7 +1103,7 @@ div.wiki-description { margin-left: 607px; float: left; height: auto; - width: 246px; + width: 300px; font-family: '微软雅黑',helvetica,arial,sans-serif; /*modify by men*/ color: rgb(0, 0, 0); font-size: 13px; @@ -1196,7 +1196,7 @@ a.img-tag3{ } .stats span.info { - width: 100px; + width: 145px; text-align: right; display: inline-block; font-weight: bold;