socialforge/app/views/bids/_form.html.erb

37 lines
1.8 KiB
Plaintext
Raw Normal View History

2013-08-20 16:32:45 +08:00
<!-- fq -->
2013-08-20 21:43:29 +08:00
<script type="text/javascript" language="javascript">
2013-08-22 20:38:54 +08:00
function show(id, id_t, label_reward, label_money, label_credit, label_content) {
2013-08-20 21:43:29 +08:00
var text = $('#' + id);
var text_t = $('#' + id_t);
if (text.val() == 0) {
2013-08-21 21:02:28 +08:00
text_t.attr("placeholder", label_reward);
2013-08-20 21:43:29 +08:00
}
if (text.val() == 1) {
2013-08-21 21:02:28 +08:00
text_t.attr("placeholder", label_money);
2013-08-20 21:43:29 +08:00
}
if (text.val() == 3) {
2013-08-22 20:38:54 +08:00
text_t.attr("placeholder", label_credit);
2013-08-20 21:43:29 +08:00
}
if (text.val() == 2) {
2013-08-21 21:02:28 +08:00
text_t.attr("placeholder", label_content);
2013-08-20 21:43:29 +08:00
}
return content;
}
</script>
2013-08-20 16:32:45 +08:00
<%= error_messages_for 'bid' %>
<!--[form:project]-->
<p style="width:500px;"><%= l(:label_bids_form_new_description) %></p>
2013-08-20 19:48:39 +08:00
<p><%= f.text_field :name, :required => true, :size => 60, :style => "width:490px;", :maxlength => Bid::NAME_LENGTH_LIMIT, :placeholder => "#{l(:label_requirement_name)}" %></p>
2013-08-20 16:32:45 +08:00
2013-08-20 19:48:39 +08:00
<p style="margin-left:-10px;padding-right: 20px;"><%= f.text_area :description, :rows => 8, :class => 'wiki-edit', :style => "font-size:small;width:490px;margin-left:10px;", :maxlength => Bid::DESCRIPTION_LENGTH_LIMIT, :placeholder => "#{l(:label_requirement_description)}" %></p>
2013-09-16 09:36:38 +08:00
<p><%= select_tag 'bid_reward_type', "<option value = '0'>#{l(:label_choose_reward)}</option><option value = '1'>#{l(:label_money)}</option><option value = '2'>#{l(:label_reward_1)}</option>".html_safe,
2013-08-22 20:38:54 +08:00
:onChange => "show('bid_reward_type', 'bid_budget', '"+l(:label_bids_reward_what)+"','"+l(:label_bids_new_money)+"','"+l(:label_bids_new_credit)+"','"+l(:label_bids_new_content)+"')" %>
2013-08-21 16:53:40 +08:00
<%= f.text_field :budget, :required => true, :size => 60, :style => "width:350px;", :placeholder => l(:label_bids_reward_what) %>
2013-09-23 20:12:32 +08:00
<!-- 设置奖项设置的打开 关闭开关-->
2013-08-20 16:32:45 +08:00
</p>
2013-08-20 21:43:29 +08:00
<p><%= f.text_field :deadline, :required => true, :size => 60, :style => "width:150px;", :placeholder => "#{l(:label_deadline)}" %><%= calendar_for('bid_deadline')%>
2013-08-20 16:32:45 +08:00
</p>