diff --git a/app/views/bids/_bid_show.html.erb b/app/views/bids/_bid_show.html.erb
index 397d636fc..20a84450c 100644
--- a/app/views/bids/_bid_show.html.erb
+++ b/app/views/bids/_bid_show.html.erb
@@ -8,7 +8,7 @@
- <%= 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') %> |
diff --git a/app/views/bids/index.html.erb b/app/views/bids/index.html.erb
index c0b5bca84..8fdb4181d 100644
--- a/app/views/bids/index.html.erb
+++ b/app/views/bids/index.html.erb
@@ -3,7 +3,7 @@
- <%= l(:label_bid_plural)%> |
+ <%= l(:label_bid_plural)%> |
<% if User.current.logged? %>
diff --git a/app/views/projects/index.html.erb b/app/views/projects/index.html.erb
index 1add4f2b5..4435727fc 100644
--- a/app/views/projects/index.html.erb
+++ b/app/views/projects/index.html.erb
@@ -1,23 +1,26 @@
<% content_for :header_tags do %>
- <%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
+<%= auto_discovery_link_tag(:atom, {:action => 'index', :format => 'atom', :key => User.current.rss_key}) %>
<% end %>
-
- <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %>
-
-
<%= form_tag(projects_path, :method => :get) do %>
- <%=l(:label_project_plural)%>
-
-<%= text_field_tag 'name', params[:name], :size => 30 %>
-<%= submit_tag l(:label_search), :class => "small", :name => nil %>
-
+
+
+ <%= l(:label_project_plural)%> |
+ <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}, :class => 'icon icon-add') if User.current.allowed_to?(:add_project, nil, :global => true) %> |
+
+
+
+ <%= text_field_tag 'name', params[:name], :size => 30 %>
+ <%= submit_tag l(:label_search), :class => "small", :name => nil %>
+ |
+
+
-<% end %>
+<%end%>
-<%= render_project_hierarchy(@projects)%>
+ <%= render_project_hierarchy(@projects)%>
| | |