diff --git a/app/views/issues/show.html.erb b/app/views/issues/show.html.erb index 2b41343af..c80b150ef 100644 --- a/app/views/issues/show.html.erb +++ b/app/views/issues/show.html.erb @@ -2,7 +2,7 @@

<%= issue_heading(@issue) %>

-> +
<% if @prev_issue_id || @next_issue_id %> diff --git a/app/views/users/info.html.erb b/app/views/users/info.html.erb index a92a3ca24..20d82c5f2 100644 --- a/app/views/users/info.html.erb +++ b/app/views/users/info.html.erb @@ -45,9 +45,12 @@ <% end %>
-<% end %> +<% else %> +暂无任何用户对您进行反馈 +<% end %> + diff --git a/app/views/users/watch_bids.html.erb b/app/views/users/watch_bids.html.erb index ce350624f..927aced4c 100644 --- a/app/views/users/watch_bids.html.erb +++ b/app/views/users/watch_bids.html.erb @@ -1,18 +1,17 @@ - -
+<% if @bid.size > 0%> <% for bid in @bid%> - +
<%= link_to image_tag(url_to_avatar(bid.author), :class => 'avatar'), :class => "avatar" %> - +
<%= link_to(bid.author, user_path(bid.author), :class => 'bid_user') %>:<%= link_to(bid.name, respond_path(bid), :class => 'bid_path') %><%= link_to(bid.author, user_path(bid.author), :class => 'bid_user') %>: <%= link_to(bid.name, respond_path(bid), :class => 'bid_path') %>
@@ -46,4 +45,7 @@
    <%= pagination_links_full @bid_pages %>
      - \ No newline at end of file + +<% else %> +暂未关注任何需求 +<% end %>