Added issue description.

This commit is contained in:
Steven Verbeek 2012-03-17 00:24:40 -03:00
parent 8a9e90dac5
commit 94fd9a6e47
4 changed files with 15 additions and 5 deletions

View file

@ -9,8 +9,12 @@
%li= msg
.clearfix
= f.label :title, "Issue Message"
.input= f.text_area :title, :maxlength => 255, :class => "xxlarge"
= f.label :title, "Issue Subject"
.input= f.text_field :title, :maxlength => 255
.clearfix
= f.label :description, "Issue Description"
.input= f.text_area :description, :maxlength => 2000, :class => "xxlarge"
.clearfix
= f.label :assignee_id

View file

@ -1,5 +1,5 @@
%h3
Issue ##{@issue.id}
%h3
@issue.title
%small
created at
= @issue.created_at.stamp("Aug 21, 2011")
@ -43,7 +43,7 @@
%hr
%div= simple_format @issue.title
%div= simple_format @issue.description
.issue_notes#notes= render "notes/notes", :tid => @issue.id, :tt => "issue"