socialforge/app/views/welcome/_search_project.html.erb

17 lines
778 B
Plaintext
Raw Normal View History

2014-03-25 16:53:11 +08:00
<%
select_option = []
(select_option << ['项目', 'projects']) if project_type == Project::ProjectType_project
(select_option << ['课程', 'courses']) if project_type == Project::ProjectType_course
select_option << ['用户', 'users']
#select_option << ['教师', 'users_teacher'],
#select_option << ['学生', 'users_student']
%>
<%= form_tag({controller: :welcome, action: :search }, method: :get) do %>
2014-03-21 15:17:14 +08:00
<div class="project-search" style="float: right">
2014-03-25 16:53:11 +08:00
<%= text_field_tag :q, nil, placeholder:'请输入要搜索的关键字', :size => 27 %>
<%= select_tag(:search_type, options_for_select(select_option) ) %>
<%#= hidden_field_tag 'project_type', project_type %>
2014-03-21 15:17:14 +08:00
<%= submit_tag l(:label_search), :class => "enterprise", :name => nil %>
2014-03-24 13:48:43 +08:00
</div>
2014-03-25 16:53:11 +08:00
<% end %>