socialforge/app/views/stores/_search_bar.html.erb

8 lines
528 B
Plaintext
Raw Normal View History

2014-01-18 10:52:05 +08:00
<div style="margin: 10px 2px;">
2014-01-17 15:05:50 +08:00
<%= form_tag( search_stores_path, method: 'post') do %>
2014-01-18 11:24:21 +08:00
<%= text_field_tag 'name', params[:name], placeholder:'请输入要搜索的关键字', name: "name", :class => 'blueinputbar', :style => 'width:433px;'%>
2014-01-18 10:52:05 +08:00
<div style="display:inline-block; width: 2%;"></div>
2014-01-17 15:05:50 +08:00
<%= submit_tag l(:label_search), :class => "enterprise"%>
2014-01-18 10:52:05 +08:00
<span class='font_lighter' style="margin-left: 10px;">全站文件搜索。不会搜索私有项目中的内容、学生已经提交的作业。</span>
2014-01-17 15:05:50 +08:00
<% end %>
</div>