diff --git a/app/views/bids/_homework_form.html.erb b/app/views/bids/_homework_form.html.erb
index 2b7578a96..29033ec59 100644
--- a/app/views/bids/_homework_form.html.erb
+++ b/app/views/bids/_homework_form.html.erb
@@ -23,12 +23,16 @@
<%= error_messages_for 'bid' %>
<%= f.text_field :name, :required => true, :size => 60, :style => "width:490px;", :maxlength => Bid::NAME_LENGTH_LIMIT, :onblur => "regexName();" %>
-
-
+
+
+
-<%= f.text_area :description, :rows => 8, :class => 'wiki-edit', :style => "font-size:small;width:490px;", :maxlength => Bid::DESCRIPTION_LENGTH_LIMIT %>
-<%= f.text_field(:deadline, :required => true, :size => 60, :style => "width:150px;", :readonly => true, :onchange => "regexDeadLine();") %>
+
+ <%= f.text_area :description, :rows => 8, :class => 'wiki-edit', :style => "font-size:small;width:490px;", :maxlength => Bid::DESCRIPTION_LENGTH_LIMIT %>
+
+
+ <%= f.text_field(:deadline, :required => true, :size => 60, :style => "width:150px;", :readonly => true, :onchange => "regexDeadLine();") %>
<%= calendar_for('bid_deadline')%>
@@ -43,6 +47,10 @@
<%= hidden_field_tag 'course_id', @course.id %>
\ No newline at end of file
diff --git a/app/views/courses/_homework_form.html.erb b/app/views/courses/_homework_form.html.erb
index 646deb16e..7d1171116 100644
--- a/app/views/courses/_homework_form.html.erb
+++ b/app/views/courses/_homework_form.html.erb
@@ -22,28 +22,39 @@
<%= error_messages_for 'bid' %>
- <%= f.text_field :name, :required => true, :size => 60, :style => "width:490px;", :maxlength => Bid::NAME_LENGTH_LIMIT, :onblur => "regexName();" %>
+ <%= f.text_field :name, :required => true, :size => 60, :style => "width:490px;",
+ :maxlength => Bid::NAME_LENGTH_LIMIT,
+ :onblur => "regexName();" %>
-
+
+
+
-<%= f.text_area :description, :rows => 8, :class => 'wiki-edit', :style => "font-size:small;width:490px;", :maxlength => Bid::DESCRIPTION_LENGTH_LIMIT %>
-
+
+ <%= f.text_area :description, :rows => 8, :class => 'wiki-edit', :style => "font-size:small;width:490px;",
+ :maxlength => Bid::DESCRIPTION_LENGTH_LIMIT %>
+
<% time = (Time.now + 3600 * 24).strftime('%Y-%m-%d') %>
<%= f.text_field(:deadline, :required => true, :size => 60, :style => "width:150px;",:value => "#{time}", :onchange => "regexDeadLine();", :readonly => true) %>
<%= calendar_for('bid_deadline')%>
-<%= f.select :is_evaluation, is_evaluation_option %>
+
+ <%= f.select :is_evaluation, is_evaluation_option %>
-<%= f.select :proportion, proportion_option %>
+
+ <%= f.select :proportion, proportion_option %>
-<%= hidden_field_tag 'course_id', @course.id %>
+
+ <%= hidden_field_tag 'course_id', @course.id %>
-