project form fixed

This commit is contained in:
gitlabhq 2011-11-08 12:23:13 -05:00
parent 1c543bdfa8
commit 49bced3a24
4 changed files with 28 additions and 10 deletions

View file

@ -710,3 +710,14 @@ body.project-page #notes-list .note span.note-title{display: block;}
body.project-page #notes-list .note span.note-title{margin-bottom: 10px}
body.project-page #notes-list .note span.note-author{color: #999; font-weight: normal; font-style: italic;}
body.project-page #notes-list .note span.note-author strong{font-weight: bold; font-style: normal;}
/** NEW PROJECT **/
.new-project-hodler {
.icon span {
background-position: -31px -70px;
}
td {
border-bottom: 1px solid #DEE2E3;
}
}

View file

@ -1,7 +1,9 @@
= form_for(@project, :remote => true) do |f|
%div.form_content
- unless @project.new_record?
%h1 Edit Project
%h2.icon
%span
= @project.name
- if @project.errors.any?
#error_explanation
%h2
@ -10,7 +12,7 @@
%ul
- @project.errors.full_messages.each do |msg|
%li= msg
%table.round-borders
%table
%tr
%td= f.label :name
%td= f.text_field :name, :placeholder => "Example Project"
@ -29,15 +31,13 @@
%tr
%td= f.label :tag_list
%td= f.text_area :tag_list, :placeholder => "project tags", :style => "height:50px", :id => :tag_field
%tr
%td= f.label :description
%td= f.text_area :description, :placeholder => "project description", :style => "height:50px"
.field
= f.label :description
%br/
= f.text_area :description, :style => "height:140px;width:932px;"
.clear
%hr.prepend-top
%br
.actions
= f.submit :class => "lbutton vm"
= f.submit :class => "button"
%div{ :class => "ajax_loader", :style => "display:none;height:200px;"}
%center

View file

@ -1 +0,0 @@
<%= render 'form' %>

View file

@ -0,0 +1,8 @@
.new-project-hodler
.container_4
%h2.icon
%span
New Project
%div.clear
= render 'form'