Merge branch 'dev' of dev.gitlabhq.com:gitlabhq into dev
This commit is contained in:
commit
81847a9335
4 changed files with 17 additions and 12 deletions
|
@ -663,6 +663,10 @@ table.highlighttable pre{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.cgray { color:gray; }
|
||||||
|
.cred { color:#D12F19; }
|
||||||
|
.cgreen { color:#44aa22; }
|
||||||
|
|
||||||
body.project-page #notes-list .note {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
|
body.project-page #notes-list .note {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
|
||||||
body.project-page #notes-list .note {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
|
body.project-page #notes-list .note {padding: 10px; border-bottom: 1px solid #eee; overflow: hidden; display: block;}
|
||||||
body.project-page #notes-list .note img{float: left; margin-right: 10px;}
|
body.project-page #notes-list .note img{float: left; margin-right: 10px;}
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
%th ID
|
%th ID
|
||||||
%th Title
|
%th Title
|
||||||
%th Closed?
|
%th Closed?
|
||||||
%th
|
|
||||||
|
|
||||||
- @issues.critical.each do |issue|
|
- @issues.critical.each do |issue|
|
||||||
= render(:partial => 'show', :locals => {:issue => issue})
|
= render(:partial => 'show', :locals => {:issue => issue})
|
||||||
|
|
|
@ -14,6 +14,14 @@
|
||||||
%span.tag.high critical
|
%span.tag.high critical
|
||||||
- if issue.today?
|
- if issue.today?
|
||||||
%span.tag.today today
|
%span.tag.today today
|
||||||
|
|
||||||
|
.right
|
||||||
|
- if can?(current_user, :admin_issue, @project) || issue.author == current_user
|
||||||
|
= link_to 'Edit', edit_project_issue_path(@project, issue), :class => "cgray", :remote => true
|
||||||
|
- if can?(current_user, :admin_issue, @project) || issue.author == current_user
|
||||||
|
|
||||||
|
= link_to 'Destroy', [@project, issue], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "cred delete-issue negative", :id => "destroy_issue_#{issue.id}"
|
||||||
|
|
||||||
-#- if issue.author == current_user
|
-#- if issue.author == current_user
|
||||||
-#%span.tag.yours yours
|
-#%span.tag.yours yours
|
||||||
-#- if issue.notes.count > 0
|
-#- if issue.notes.count > 0
|
||||||
|
@ -27,9 +35,3 @@
|
||||||
= hidden_field_tag :status_only, true
|
= hidden_field_tag :status_only, true
|
||||||
- else
|
- else
|
||||||
= check_box_tag "closed", 1, issue.closed, :disabled => true
|
= check_box_tag "closed", 1, issue.closed, :disabled => true
|
||||||
%td
|
|
||||||
- if @view_mode == :fluid
|
|
||||||
- if can?(current_user, :admin_issue, @project) || issue.author == current_user
|
|
||||||
= link_to 'Edit', edit_project_issue_path(@project, issue), :class => "lbutton positive", :remote => true
|
|
||||||
- if can?(current_user, :admin_issue, @project) || issue.author == current_user
|
|
||||||
= link_to 'Destroy', [@project, issue], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "lbutton delete-issue negative", :id => "destroy_issue_#{issue.id}"
|
|
||||||
|
|
|
@ -2,16 +2,16 @@
|
||||||
= image_tag gravatar_icon(note.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
|
= image_tag gravatar_icon(note.author.email), :class => "left", :width => 40, :style => "padding-right:5px;"
|
||||||
%div.note-author
|
%div.note-author
|
||||||
%strong= note.author_name
|
%strong= note.author_name
|
||||||
%cite
|
%cite.cgray
|
||||||
= time_ago_in_words(note.updated_at)
|
= time_ago_in_words(note.updated_at)
|
||||||
ago
|
ago
|
||||||
- if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
|
- if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
|
||||||
= link_to 'Remove', [@project, note], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "lbutton delete-note right negative"
|
= link_to "Remove", [@project, note], :confirm => 'Are you sure?', :method => :delete, :remote => true, :class => "cred delete-note right"
|
||||||
|
|
||||||
%div.note-title
|
%div.note-title
|
||||||
= markdown(note.note)
|
= markdown(note.note)
|
||||||
- if note.attachment.url
|
- if note.attachment.url
|
||||||
Attachment:
|
.right
|
||||||
|
%span.file
|
||||||
= link_to note.attachment_identifier, note.attachment.url, :target => "_blank"
|
= link_to note.attachment_identifier, note.attachment.url, :target => "_blank"
|
||||||
%br
|
|
||||||
.clear
|
.clear
|
||||||
|
|
Loading…
Reference in a new issue