@@ -1,42 +1,42 | |||
|
1 | 1 | <h2><%= l(:label_repository) %></h2> |
|
2 | 2 | |
|
3 | 3 | <%= simple_format(l(:text_repository_usernames_mapping)) %> |
|
4 | 4 | |
|
5 | 5 | <% if @committers.empty? %> |
|
6 | 6 | <p class="nodata"><%= l(:label_no_data) %></p> |
|
7 | 7 | <% else %> |
|
8 | 8 | |
|
9 | 9 | <%= form_tag({}) do %> |
|
10 | 10 | <table class="list"> |
|
11 | 11 | <thead> |
|
12 | 12 | <tr> |
|
13 | 13 | <th><%= l(:field_login) %></th> |
|
14 | 14 | <th><%= l(:label_user) %></th> |
|
15 | 15 | </tr> |
|
16 | 16 | </thead> |
|
17 | 17 | <tbody> |
|
18 | 18 | <% i = 0 -%> |
|
19 | 19 | <% @committers.each do |committer, user_id| -%> |
|
20 | 20 | <tr class="<%= cycle 'odd', 'even' %>"> |
|
21 | 21 | <td><%=h committer %></td> |
|
22 | 22 | <td> |
|
23 | 23 | <%= hidden_field_tag "committers[#{i}][]", committer %> |
|
24 | 24 | <%= select_tag "committers[#{i}][]", |
|
25 | 25 | content_tag( |
|
26 | 26 | 'option', |
|
27 | 27 | "-- #{l :actionview_instancetag_blank_option} --", |
|
28 | 28 | :value => '' |
|
29 | 29 | ) + |
|
30 | 30 | options_from_collection_for_select( |
|
31 | 31 | @users, 'id', 'name', user_id.to_i |
|
32 | 32 | ) %> |
|
33 | 33 | </td> |
|
34 | 34 | </tr> |
|
35 | 35 | <% i += 1 -%> |
|
36 | 36 | <% end -%> |
|
37 | 37 | </tbody> |
|
38 | 38 | </table> |
|
39 |
<p><%= submit_tag(l(:button_ |
|
|
39 | <p><%= submit_tag(l(:button_save)) %></p> | |
|
40 | 40 | <% end %> |
|
41 | 41 | |
|
42 | 42 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now