Commit ff1cbbc5 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Issue restyle

parent 7b4f5452
%div.issue-form-holder %div.issue-form-holder
.issue-show-holder.ui-box = form_for [@project, @issue], :remote => request.xhr? do |f|
%h3 %div
= @issue.new_record? ? "New issue" : "Edit Issue ##{@issue.id}" %span.entity-info
- unless @issue.new_record? - if request.xhr?
.right = link_to "#back", :onclick => "backToIssues();" do
- if @issue.closed .entity-button
%span.tag.high Resolved Back
- else %i
%span.tag.today Open - else
= form_for [@project, @issue], :remote => "true" do |f| - if @issue.new_record?
.data = link_to project_issues_path(@project) do
%table.no-borders .entity-button
-if @issue.errors.any? Back
%tr %i
%td Errors - else
%td = link_to project_issue_path(@project, @issue) do
#error_explanation .entity-button
- @issue.errors.full_messages.each do |msg| Back
%span= msg %i
%br
%h2= @issue.new_record? ? "New Issue" : "Edit Issue ##{@issue.id}"
%tr %hr
%td= f.label :title %table.no-borders
%td= f.text_area :title, :style => "width:450px; height:100px", :maxlength => 255 -if @issue.errors.any?
%tr
%td{:colspan => 2}
#error_explanation
- @issue.errors.full_messages.each do |msg|
%span= msg
%br
%tr
%td= f.label :assignee_id
%td= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Select user" })
%tr %tr
%td= f.label :critical, "Critical" %td= f.label :assignee_id
%td= f.check_box :critical %td= f.select(:assignee_id, @project.users.all.collect {|p| [ p.name, p.id ] }, { :include_blank => "Select user" })
- unless @issue.new_record? %tr
%tr %td= f.label :critical, "Critical"
%td= f.label :closed %td= f.check_box :critical
%td= f.check_box :closed
.buttons - unless @issue.new_record?
= f.submit 'Save', :class => "grey-button" %tr
%td= f.label :closed
%td= f.check_box :closed
= f.text_area :title, :style => "width:718px; height:100px", :maxlength => 255
%br
%br
.merge-tabs
= f.submit 'Save', :class => "grey-button"
 
- unless @issue.new_record?
.right .right
- if request.xhr? = link_to 'Remove', [@project, @issue], :confirm => 'Are you sure?', :method => :delete, :class => "red-button"
= link_to_function "Back", "backToIssues();", :class => "grey-button"
- else
= link_to "Back", [@project, @issue], :class => "grey-button"
...@@ -96,7 +96,7 @@ describe "Issues" do ...@@ -96,7 +96,7 @@ describe "Issues" do
end end
it "should open new issue form" do it "should open new issue form" do
page.should have_content("New issue") page.should have_content("New Issue")
end end
describe "fill in" do describe "fill in" do
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment