code layout cleanup app/views/repositories/committers.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@8838 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
parent
d90cdb1b10
commit
c2943ffd29
@ -21,7 +21,15 @@
|
|||||||
<td><%=h committer %></td>
|
<td><%=h committer %></td>
|
||||||
<td>
|
<td>
|
||||||
<%= hidden_field_tag "committers[#{i}][]", committer %>
|
<%= hidden_field_tag "committers[#{i}][]", committer %>
|
||||||
<%= select_tag "committers[#{i}][]", content_tag('option', "-- #{l :actionview_instancetag_blank_option} --", :value => '') + options_from_collection_for_select(@users, 'id', 'name', user_id.to_i) %>
|
<%= select_tag "committers[#{i}][]",
|
||||||
|
content_tag(
|
||||||
|
'option',
|
||||||
|
"-- #{l :actionview_instancetag_blank_option} --",
|
||||||
|
:value => ''
|
||||||
|
) +
|
||||||
|
options_from_collection_for_select(
|
||||||
|
@users, 'id', 'name', user_id.to_i
|
||||||
|
) %>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<% i += 1 -%>
|
<% i += 1 -%>
|
||||||
|
Loading…
x
Reference in New Issue
Block a user