Merge branch 'szzh' into develop
This commit is contained in:
commit
ee0c8fc180
|
@ -211,13 +211,17 @@ module WatchersHelper
|
||||||
end
|
end
|
||||||
|
|
||||||
def watchers_checkboxes(object, users, checked=nil)
|
def watchers_checkboxes(object, users, checked=nil)
|
||||||
users.map do |user|
|
if users.nil?
|
||||||
c = checked.nil? ? object.watched_by?(user) : checked
|
|
||||||
tag = check_box_tag 'issue[watcher_user_ids][]', user.id, c, :id => nil
|
else
|
||||||
content_tag 'label', "#{tag} #{h(user)}".html_safe,
|
users.map do |user|
|
||||||
:id => "issue_watcher_user_ids_#{user.id}",
|
c = checked.nil? ? object.watched_by?(user) : checked
|
||||||
:class => "floating"
|
tag = check_box_tag 'issue[watcher_user_ids][]', user.id, c, :id => nil
|
||||||
end.join.html_safe
|
content_tag 'label', "#{tag} #{h(user)}".html_safe,
|
||||||
|
:id => "issue_watcher_user_ids_#{user.id}",
|
||||||
|
:class => "floating"
|
||||||
|
end.join.html_safe
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
def applied_css(project)
|
def applied_css(project)
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
|
<p><%= link_to_attachment @attachment, :text => l(:button_download), :download => true -%>
|
||||||
<span class="size">(<%= number_to_human_size @attachment.filesize %>)</span>   
|
<span class="size">(<%= number_to_human_size @attachment.filesize %>)</span>   
|
||||||
<span class="size">
|
<span class="size">
|
||||||
<% if @attachment!=nil&&@attachment.container_type == 'Document' %>
|
<% if @attachment!=nil&&@attachment.container_type == 'Document'&&User.current.allowed_to?({:controller => 'code_review', :action => 'update_diff_view'}, @attachment.project) %>
|
||||||
<%= link = link_to(l(:button_add), {:controller => 'code_review',
|
<%= link = link_to(l(:button_add), {:controller => 'code_review',
|
||||||
:action => 'assign', :action_type => 'attachment',
|
:action => 'assign', :action_type => 'attachment',
|
||||||
:id=>@attachment.project,
|
:id=>@attachment.project,
|
||||||
|
|
|
@ -30,7 +30,6 @@
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= l(:label_x_contribute_to, :count => 0) %>
|
<%= l(:label_x_contribute_to, :count => 0) %>
|
||||||
<% end %>
|
<% end %>
|
||||||
</p>
|
|
||||||
|
|
||||||
<p class="font_description">
|
<p class="font_description">
|
||||||
<% unless user.memberships.empty? %>
|
<% unless user.memberships.empty? %>
|
||||||
|
@ -47,7 +46,6 @@
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<!-- end -->
|
<!-- end -->
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td width="200" align="right" class="font_lighter"><%= l(:label_user_joinin) %><%= format_date(user.created_on) %>
|
<td width="200" align="right" class="font_lighter"><%= l(:label_user_joinin) %><%= format_date(user.created_on) %>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue