diff --git a/app/controllers/softapplications_controller.rb b/app/controllers/softapplications_controller.rb
index 89bdce5b7..c216a3e93 100644
--- a/app/controllers/softapplications_controller.rb
+++ b/app/controllers/softapplications_controller.rb
@@ -330,7 +330,7 @@ class SoftapplicationsController < ApplicationController
#new added end
respond_to do |format|
- format.js
+ format.html
end
end
diff --git a/app/views/layouts/_base_softapplication_index_top_content.html.erb b/app/views/layouts/_base_softapplication_index_top_content.html.erb
index de9930d91..ff897a866 100644
--- a/app/views/layouts/_base_softapplication_index_top_content.html.erb
+++ b/app/views/layouts/_base_softapplication_index_top_content.html.erb
@@ -17,7 +17,7 @@
<%= l(:label_user_location) %> : |
- <%= form_tag({:controller => 'softapplications', :action => 'search'}, :method => :get, :remote => true, :id => "search_softapplications") do %>
+ <%= form_tag({:controller => 'softapplications', :action => 'search'}, :method => :get, :id => "search_softapplications") do %>
<%= text_field_tag 'name', params[:name], :size => 25 %>
<%= hidden_field_tag 'project_type', params[:project_type] %>
diff --git a/app/views/softapplications/search.html.erb b/app/views/softapplications/search.html.erb
new file mode 100644
index 000000000..0f0913139
--- /dev/null
+++ b/app/views/softapplications/search.html.erb
@@ -0,0 +1,11 @@
+<%=render :partial => 'layouts/base_softapplication_index_top_content'%>
+
+<% if @softapplications.size > 0%>
+ <%#= sort_softapplication(@s_state)%>
+
+ <%= render :partial => "list" %>
+
+<% else %>
+ <%= render :partial => "layouts/no_content"%>
+<% end %>
+<% html_title l(:label_contest_work_list)%>
\ No newline at end of file
|