Defect #15307 ยป obsoleted_tag_align.diff
app/views/account/login.html.erb (.../app) (working copy) | ||
---|---|---|
4 | 4 |
<%= back_url_hidden_field_tag %> |
5 | 5 |
<table> |
6 | 6 |
<tr> |
7 |
<td align="right"><label for="username"><%=l(:field_login)%>:</label></td>
|
|
8 |
<td align="left"><%= text_field_tag 'username', params[:username], :tabindex => '1' %></td>
|
|
7 |
<td style="text-align: right;"><label for="username"><%=l(:field_login)%>:</label></td>
|
|
8 |
<td style="text-align: left;"><%= text_field_tag 'username', params[:username], :tabindex => '1' %></td>
|
|
9 | 9 |
</tr> |
10 | 10 |
<tr> |
11 |
<td align="right"><label for="password"><%=l(:field_password)%>:</label></td>
|
|
12 |
<td align="left"><%= password_field_tag 'password', nil, :tabindex => '2' %></td>
|
|
11 |
<td style="text-align: right;"><label for="password"><%=l(:field_password)%>:</label></td>
|
|
12 |
<td style="text-align: left;"><%= password_field_tag 'password', nil, :tabindex => '2' %></td>
|
|
13 | 13 |
</tr> |
14 | 14 |
<% if Setting.openid? %> |
15 | 15 |
<tr> |
16 |
<td align="right"><label for="openid_url"><%=l(:field_identity_url)%></label></td>
|
|
17 |
<td align="left"><%= text_field_tag "openid_url", nil, :tabindex => '3' %></td>
|
|
16 |
<td style="text-align: right;"><label for="openid_url"><%=l(:field_identity_url)%></label></td>
|
|
17 |
<td style="text-align: left;"><%= text_field_tag "openid_url", nil, :tabindex => '3' %></td>
|
|
18 | 18 |
</tr> |
19 | 19 |
<% end %> |
20 | 20 |
<tr> |
21 | 21 |
<td></td> |
22 |
<td align="left">
|
|
22 |
<td style="text-align: left;">
|
|
23 | 23 |
<% if Setting.autologin? %> |
24 | 24 |
<label for="autologin"><%= check_box_tag 'autologin', 1, false, :tabindex => 4 %> <%= l(:label_stay_logged_in) %></label> |
25 | 25 |
<% end %> |
26 | 26 |
</td> |
27 | 27 |
</tr> |
28 | 28 |
<tr> |
29 |
<td align="left">
|
|
29 |
<td style="text-align: left;">
|
|
30 | 30 |
<% if Setting.lost_password? %> |
31 | 31 |
<%= link_to l(:label_password_lost), lost_password_path %> |
32 | 32 |
<% end %> |
33 | 33 |
</td> |
34 |
<td align="right">
|
|
34 |
<td style="text-align: right;">
|
|
35 | 35 |
<input type="submit" name="login" value="<%=l(:button_login)%> »" tabindex="5"/> |
36 | 36 |
</td> |
37 | 37 |
</tr> |
app/views/my/blocks/_timelog.html.erb (.../app) (working copy) | ||
---|---|---|
31 | 31 |
<td class="subject"><%=h entry.project %> <%= h(' - ') + link_to_issue(entry.issue, :truncate => 50) if entry.issue %></td> |
32 | 32 |
<td class="comments"><%=h entry.comments %></td> |
33 | 33 |
<td class="hours"><%= html_hours("%.2f" % entry.hours) %></td> |
34 |
<td align="center">
|
|
34 |
<td style="text-align: center;">
|
|
35 | 35 |
<% if entry.editable_by?(@user) -%> |
36 | 36 |
<%= link_to image_tag('edit.png'), {:controller => 'timelog', :action => 'edit', :id => entry}, |
37 | 37 |
:title => l(:button_edit) %> |
app/views/workflows/index.html.erb (.../app) (working copy) | ||
---|---|---|
23 | 23 |
<tr class="<%= cycle('odd', 'even') %>"> |
24 | 24 |
<td><%= h tracker %></td> |
25 | 25 |
<% roles.each do |role, count| -%> |
26 |
<td align="center">
|
|
26 |
<td style="text-align: center;">
|
|
27 | 27 |
<%= link_to((count > 0 ? count : image_tag('false.png')), {:action => 'edit', :role_id => role, :tracker_id => tracker}, :title => l(:button_edit)) %> |
28 | 28 |
</td> |
29 | 29 |
<% end -%> |
app/views/workflows/permissions.html.erb (.../app) (working copy) | ||
---|---|---|
35 | 35 |
<table class="list fields_permissions"> |
36 | 36 |
<thead> |
37 | 37 |
<tr> |
38 |
<th align="left">
|
|
38 |
<th style="text-align: left;">
|
|
39 | 39 |
</th> |
40 |
<th align="center" colspan="<%= @statuses.length %>"><%=l(:label_issue_status)%></th>
|
|
40 |
<th style="text-align: center;" colspan="<%= @statuses.length %>"><%=l(:label_issue_status)%></th>
|
|
41 | 41 |
</tr> |
42 | 42 |
<tr> |
43 | 43 |
<td></td> |
44 | 44 |
<% for status in @statuses %> |
45 |
<td width="<%= 75 / @statuses.size %>%" align="center">
|
|
45 |
<td width="<%= 75 / @statuses.size %>%" style="text-align: center;">
|
|
46 | 46 |
<%=h status.name %> |
47 | 47 |
</td> |
48 | 48 |
<% end %> |
... | ... | |
61 | 61 |
<%=h name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> |
62 | 62 |
</td> |
63 | 63 |
<% for status in @statuses -%> |
64 |
<td align="center" class="<%= @permissions[status.id][field] %>">
|
|
64 |
<td style="text-align: center;" class="<%= @permissions[status.id][field] %>">
|
|
65 | 65 |
<%= field_permission_tag(@permissions, status, field) %> |
66 | 66 |
</td> |
67 | 67 |
<% end -%> |
... | ... | |
80 | 80 |
<%=h field.name %> <%= content_tag('span', '*', :class => 'required') if field_required?(field) %> |
81 | 81 |
</td> |
82 | 82 |
<% for status in @statuses -%> |
83 |
<td align="center" class="<%= @permissions[status.id][field.id.to_s] %>">
|
|
83 |
<td style="text-align: center;" class="<%= @permissions[status.id][field.id.to_s] %>">
|
|
84 | 84 |
<%= field_permission_tag(@permissions, status, field) %> |
85 | 85 |
</td> |
86 | 86 |
<% end -%> |
app/views/workflows/_form.html.erb (.../app) (working copy) | ||
---|---|---|
1 | 1 |
<table class="list transitions transitions-<%= name %>"> |
2 | 2 |
<thead> |
3 | 3 |
<tr> |
4 |
<th align="left">
|
|
4 |
<th style="text-align: left;">
|
|
5 | 5 |
<%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input')", |
6 | 6 |
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
7 | 7 |
<%=l(:label_current_status)%> |
8 | 8 |
</th> |
9 |
<th align="center" colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th>
|
|
9 |
<th style="text-align: center;" colspan="<%= @statuses.length %>"><%=l(:label_new_statuses_allowed)%></th>
|
|
10 | 10 |
</tr> |
11 | 11 |
<tr> |
12 | 12 |
<td></td> |
13 | 13 |
<% for new_status in @statuses %> |
14 |
<td width="<%= 75 / @statuses.size %>%" align="center">
|
|
14 |
<td width="<%= 75 / @statuses.size %>%" style="text-align: center;">
|
|
15 | 15 |
<%= link_to_function(image_tag('toggle_check.png'), "toggleCheckboxesBySelector('table.transitions-#{name} input.new-status-#{new_status.id}')", |
16 | 16 |
:title => "#{l(:button_check_all)}/#{l(:button_uncheck_all)}") %> |
17 | 17 |
<%=h new_status.name %> |
... | ... | |
30 | 30 |
</td> |
31 | 31 |
<% for new_status in @statuses -%> |
32 | 32 |
<% checked = workflows.detect {|w| w.old_status_id == old_status.id && w.new_status_id == new_status.id} %> |
33 |
<td align="center" class="<%= checked ? 'enabled' : '' %>">
|
|
33 |
<td style="text-align: center;" class="<%= checked ? 'enabled' : '' %>">
|
|
34 | 34 |
<%= check_box_tag "issue_status[#{ old_status.id }][#{new_status.id}][]", name, checked, |
35 | 35 |
:class => "old-status-#{old_status.id} new-status-#{new_status.id}" %> |
36 | 36 |
</td> |
app/views/reports/_simple.html.erb (.../app) (working copy) | ||
---|---|---|
4 | 4 |
<table class="list"> |
5 | 5 |
<thead><tr> |
6 | 6 |
<th style="width:25%"></th> |
7 |
<th align="center" style="width:25%"><%=l(:label_open_issues_plural)%></th>
|
|
8 |
<th align="center" style="width:25%"><%=l(:label_closed_issues_plural)%></th>
|
|
9 |
<th align="center" style="width:25%"><%=l(:label_total)%></th>
|
|
7 |
<th style="text-align: center; width:25%;"><%=l(:label_open_issues_plural)%></th>
|
|
8 |
<th style="text-align: center;" style="width:25%"><%=l(:label_closed_issues_plural)%></th>
|
|
9 |
<th style="text-align: center;" style="width:25%"><%=l(:label_total)%></th>
|
|
10 | 10 |
</tr></thead> |
11 | 11 |
<tbody> |
12 | 12 |
<% for row in rows %> |
13 | 13 |
<tr class="<%= cycle("odd", "even") %>"> |
14 | 14 |
<td><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td> |
15 |
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
|
|
16 |
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
|
|
17 |
<td align="center"><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
|
|
15 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
|
|
16 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
|
|
17 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
|
|
18 | 18 |
</tr> |
19 | 19 |
<% end %> |
20 | 20 |
</tbody> |
app/views/reports/_details.html.erb (.../app) (working copy) | ||
---|---|---|
8 | 8 |
<% for status in @statuses %> |
9 | 9 |
<th style="width:<%= col_width %>%"><%=h status.name %></th> |
10 | 10 |
<% end %> |
11 |
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_open_issues_plural)%></strong></th>
|
|
12 |
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_closed_issues_plural)%></strong></th>
|
|
13 |
<th align="center" style="width:<%= col_width %>%"><strong><%=l(:label_total)%></strong></th>
|
|
11 |
<th style="text-align: center; width:<%= col_width %>%;"><strong><%=l(:label_open_issues_plural)%></strong></th>
|
|
12 |
<th style="text-align: center; width:<%= col_width %>%;"><strong><%=l(:label_closed_issues_plural)%></strong></th>
|
|
13 |
<th style="text-align: center; width:<%= col_width %>%;"><strong><%=l(:label_total)%></strong></th>
|
|
14 | 14 |
</tr></thead> |
15 | 15 |
<tbody> |
16 | 16 |
<% for row in rows %> |
17 | 17 |
<tr class="<%= cycle("odd", "even") %>"> |
18 | 18 |
<td><%= link_to h(row.name), aggregate_path(@project, field_name, row) %></td> |
19 | 19 |
<% for status in @statuses %> |
20 |
<td align="center"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id) %></td>
|
|
20 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id, "status_id" => status.id }, aggregate_path(@project, field_name, row, :status_id => status.id) %></td>
|
|
21 | 21 |
<% end %> |
22 |
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
|
|
23 |
<td align="center"><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
|
|
24 |
<td align="center"><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
|
|
22 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id, "closed" => 0 }, aggregate_path(@project, field_name, row, :status_id => "o") %></td>
|
|
23 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id, "closed" => 1 }, aggregate_path(@project, field_name, row, :status_id => "c") %></td>
|
|
24 |
<td style="text-align: center;"><%= aggregate_link data, { field_name => row.id }, aggregate_path(@project, field_name, row, :status_id => "*") %></td>
|
|
25 | 25 |
</tr> |
26 | 26 |
<% end %> |
27 | 27 |
</tbody> |
app/views/custom_fields/_index.html.erb (.../app) (working copy) | ||
---|---|---|
14 | 14 |
<% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%> |
15 | 15 |
<tr class="<%= cycle("odd", "even") %>"> |
16 | 16 |
<td><%= link_to h(custom_field.name), edit_custom_field_path(custom_field) %></td> |
17 |
<td align="center"><%= l(Redmine::CustomFieldFormat.label_for(custom_field.field_format)) %></td>
|
|
18 |
<td align="center"><%= checked_image custom_field.is_required? %></td>
|
|
17 |
<td style="text-align: center;"><%= l(Redmine::CustomFieldFormat.label_for(custom_field.field_format)) %></td>
|
|
18 |
<td style="text-align: center;"><%= checked_image custom_field.is_required? %></td>
|
|
19 | 19 |
<% if tab[:name] == 'IssueCustomField' %> |
20 |
<td align="center"><%= checked_image custom_field.is_for_all? %></td>
|
|
21 |
<td align="center"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
|
|
20 |
<td style="text-align: center;"><%= checked_image custom_field.is_for_all? %></td>
|
|
21 |
<td style="text-align: center;"><%= l(:label_x_projects, :count => custom_field.projects.count) if custom_field.is_a? IssueCustomField and !custom_field.is_for_all? %></td>
|
|
22 | 22 |
<% end %> |
23 |
<td align="center" style="width:15%;"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td>
|
|
23 |
<td style="text-align: center; width:15%;"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td>
|
|
24 | 24 |
<td class="buttons"> |
25 | 25 |
<%= delete_link custom_field_path(custom_field) %> |
26 | 26 |
</td> |
app/views/timelog/_list.html.erb (.../app) (working copy) | ||
---|---|---|
21 | 21 |
<tr class="time-entry <%= cycle("odd", "even") %> hascontextmenu"> |
22 | 22 |
<td class="checkbox hide-when-print"><%= check_box_tag("ids[]", entry.id, false, :id => nil) %></td> |
23 | 23 |
<%= raw @query.inline_columns.map {|column| "<td class=\"#{column.css_classes}\">#{column_content(column, entry)}</td>"}.join %> |
24 |
<td align="center">
|
|
24 |
<td style="text-align: center;">
|
|
25 | 25 |
<% if entry.editable_by?(User.current) -%> |
26 | 26 |
<%= link_to image_tag('edit.png'), edit_time_entry_path(entry), |
27 | 27 |
:title => l(:button_edit) %> |
app/views/users/index.html.erb (.../app) (working copy) | ||
---|---|---|
41 | 41 |
<td class="firstname"><%= h(user.firstname) %></td> |
42 | 42 |
<td class="lastname"><%= h(user.lastname) %></td> |
43 | 43 |
<td class="email"><%= mail_to(h(user.mail)) %></td> |
44 |
<td align="center"><%= checked_image user.admin? %></td>
|
|
45 |
<td class="created_on" align="center"><%= format_time(user.created_on) %></td>
|
|
46 |
<td class="last_login_on" align="center"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
|
|
44 |
<td style="text-align: center;"><%= checked_image user.admin? %></td>
|
|
45 |
<td class="created_on" style="text-align: center;"><%= format_time(user.created_on) %></td>
|
|
46 |
<td class="last_login_on" style="text-align: center;"><%= format_time(user.last_login_on) unless user.last_login_on.nil? %></td>
|
|
47 | 47 |
<td class="buttons"> |
48 | 48 |
<%= change_status_link(user) %> |
49 | 49 |
<%= delete_link user_path(user, :back_url => users_path(params)) unless User.current == user %> |
app/views/files/index.html.erb (.../app) (working copy) | ||
---|---|---|
20 | 20 |
<% next if container.attachments.empty? -%> |
21 | 21 |
<% if container.is_a?(Version) -%> |
22 | 22 |
<tr> |
23 |
<th colspan="6" align="left">
|
|
23 |
<th colspan="6" style="text-align: left;">
|
|
24 | 24 |
<%= link_to(h(container), {:controller => 'versions', :action => 'show', :id => container}, :class => "icon icon-package") %> |
25 | 25 |
</th> |
26 | 26 |
</tr> |
... | ... | |
32 | 32 |
<td class="filesize"><%= number_to_human_size(file.filesize) %></td> |
33 | 33 |
<td class="downloads"><%= file.downloads %></td> |
34 | 34 |
<td class="digest"><%= file.digest %></td> |
35 |
<td align="center">
|
|
35 |
<td style="text-align: center;">
|
|
36 | 36 |
<%= link_to(image_tag('delete.png'), attachment_path(file), |
37 | 37 |
:data => {:confirm => l(:text_are_you_sure)}, :method => :delete) if delete_allowed %> |
38 | 38 |
</td> |
app/views/auth_sources/index.html.erb (.../app) (working copy) | ||
---|---|---|
10 | 10 |
<th><%=l(:field_type)%></th> |
11 | 11 |
<th><%=l(:field_host)%></th> |
12 | 12 |
<th><%=l(:label_user_plural)%></th> |
13 |
<th></th> |
|
14 | 13 |
</tr></thead> |
15 | 14 |
<tbody> |
16 | 15 |
<% for source in @auth_sources %> |
17 | 16 |
<tr id="auth-source-<%= source.id %>" class="<%= cycle("odd", "even") %>"> |
18 | 17 |
<td><%= link_to(h(source.name), :action => 'edit', :id => source)%></td> |
19 |
<td align="center"><%= h source.auth_method_name %></td>
|
|
20 |
<td align="center"><p><%= h source.host %></p><p><%= h source.host1 %></p><p><%= h source.host2 %></p></td>
|
|
21 |
<td align="center"><%= h source.users.count %></td>
|
|
18 |
<td style="text-align: center;"><%= h source.auth_method_name %></td>
|
|
19 |
<td style="text-align: center;"><p><%= h source.host %></p><p><%= h source.host1 %></p><p><%= h source.host2 %></p></td>
|
|
20 |
<td style="text-align: center;"><%= h source.users.count %></td>
|
|
22 | 21 |
<td class="buttons"> |
23 | 22 |
<%= link_to l(:button_test), try_connection_auth_source_path(source), :class => 'icon icon-test' %> |
24 | 23 |
<%= delete_link auth_source_path(source) %> |
app/views/versions/_issue_counts.html.erb (.../app) (working copy) | ||
---|---|---|
13 | 13 |
<table> |
14 | 14 |
<% counts.each do |count| %> |
15 | 15 |
<tr> |
16 |
<td width="130px" align="right" >
|
|
16 |
<td width="130px" style="text-align: right;" >
|
|
17 | 17 |
<% if count[:group] -%> |
18 | 18 |
<%= link_to(h(count[:group]), project_issues_path(version.project, :set_filter => 1, :status_id => '*', :fixed_version_id => version, "#{criteria}_id" => count[:group])) %> |
19 | 19 |
<% else -%> |
app/views/trackers/fields.html.erb (.../app) (working copy) | ||
---|---|---|
31 | 31 |
<%= l("field_#{field}".sub(/_id$/, '')) %> |
32 | 32 |
</td> |
33 | 33 |
<% @trackers.each do |tracker| %> |
34 |
<td align="center">
|
|
34 |
<td style="text-align: center;">
|
|
35 | 35 |
<%= check_box_tag "trackers[#{tracker.id}][core_fields][]", field, tracker.core_fields.include?(field), |
36 | 36 |
:class => "tracker-#{tracker.id} core-field-#{field}" %> |
37 | 37 |
</td> |
... | ... | |
53 | 53 |
<%= field.name %> |
54 | 54 |
</td> |
55 | 55 |
<% @trackers.each do |tracker| %> |
56 |
<td align="center">
|
|
56 |
<td style="text-align: center;">
|
|
57 | 57 |
<%= check_box_tag "trackers[#{tracker.id}][custom_field_ids][]", field.id, tracker.custom_fields.include?(field), |
58 | 58 |
:class => "tracker-#{tracker.id} custom-field-#{field.id}" %> |
59 | 59 |
</td> |
app/views/trackers/index.html.erb (.../app) (working copy) | ||
---|---|---|
16 | 16 |
<% for tracker in @trackers %> |
17 | 17 |
<tr class="<%= cycle("odd", "even") %>"> |
18 | 18 |
<td><%= link_to h(tracker.name), edit_tracker_path(tracker) %></td> |
19 |
<td align="center">
|
|
19 |
<td style="text-align: center;">
|
|
20 | 20 |
<% unless tracker.workflow_rules.count > 0 %> |
21 | 21 |
<span class="icon icon-warning"> |
22 | 22 |
<%= l(:text_tracker_no_workflow) %> (<%= link_to l(:button_edit), workflows_edit_path(:tracker_id => tracker) %>) |
23 | 23 |
</span> |
24 | 24 |
<% end %> |
25 | 25 |
</td> |
26 |
<td align="center" style="width:15%;">
|
|
26 |
<td style="text-align: center; width:15%;">
|
|
27 | 27 |
<%= reorder_links('tracker', {:action => 'update', :id => tracker}, :put) %> |
28 | 28 |
</td> |
29 | 29 |
<td class="buttons"> |
app/views/groups/index.html.erb (.../app) (working copy) | ||
---|---|---|
24 | 24 |
<tr class="<%= cycle 'odd', 'even' %>"> |
25 | 25 |
<td><%= link_to h(group), edit_group_path(group) %></td> |
26 | 26 |
<td><%= auth_label %></td> |
27 |
<td align="center"><%= group.users.size %></td>
|
|
27 |
<td style="text-align: center;"><%= group.users.size %></td>
|
|
28 | 28 |
<td class="buttons"><%= delete_link group %></td> |
29 | 29 |
</tr> |
30 | 30 |
<% end %> |
app/views/issue_statuses/index.html.erb (.../app) (working copy) | ||
---|---|---|
21 | 21 |
<tr class="<%= cycle("odd", "even") %>"> |
22 | 22 |
<td><%= link_to h(status.name), edit_issue_status_path(status) %></td> |
23 | 23 |
<% if Issue.use_status_for_done_ratio? %> |
24 |
<td align="center"><%= h status.default_done_ratio %></td>
|
|
24 |
<td style="text-align: center;"><%= h status.default_done_ratio %></td>
|
|
25 | 25 |
<% end %> |
26 |
<td align="center"><%= checked_image status.is_default? %></td>
|
|
27 |
<td align="center"><%= checked_image status.is_closed? %></td>
|
|
28 |
<td align="center" style="width:15%;"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td>
|
|
26 |
<td style="text-align: center;"><%= checked_image status.is_default? %></td>
|
|
27 |
<td style="text-align: center;"><%= checked_image status.is_closed? %></td>
|
|
28 |
<td style="text-align: center; width:15%;"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td>
|
|
29 | 29 |
<td class="buttons"> |
30 | 30 |
<%= delete_link issue_status_path(status) %> |
31 | 31 |
</td> |
app/views/roles/index.html.erb (.../app) (working copy) | ||
---|---|---|
15 | 15 |
<% for role in @roles %> |
16 | 16 |
<tr class="<%= cycle("odd", "even") %>"> |
17 | 17 |
<td><%= content_tag(role.builtin? ? 'em' : 'span', link_to(h(role.name), edit_role_path(role))) %></td> |
18 |
<td align="center" style="width:15%;">
|
|
18 |
<td style="text-align: center; width:15%;">
|
|
19 | 19 |
<% unless role.builtin? %> |
20 | 20 |
<%= reorder_links('role', {:action => 'update', :id => role}, :put) %> |
21 | 21 |
<% end %> |
app/views/roles/permissions.html.erb (.../app) (working copy) | ||
---|---|---|
38 | 38 |
<%= l_or_humanize(permission.name, :prefix => 'permission_') %> |
39 | 39 |
</td> |
40 | 40 |
<% @roles.each do |role| %> |
41 |
<td align="center">
|
|
41 |
<td style="text-align: center">
|
|
42 | 42 |
<% if role.setable_permissions.include? permission %> |
43 | 43 |
<%= check_box_tag "permissions[#{role.id}][]", permission.name, (role.permissions.include? permission.name), :id => nil, :class => "role-#{role.id}" %> |
44 | 44 |
<% end %> |
app/views/admin/projects.html.erb (.../app) (working copy) | ||
---|---|---|
28 | 28 |
<% project_tree(@projects) do |project, level| %> |
29 | 29 |
<tr class="<%= cycle("odd", "even") %> <%= project.css_classes %> <%= level > 0 ? "idnt idnt-#{level}" : nil %>"> |
30 | 30 |
<td class="name"><span><%= link_to_project_settings(project, {}, :title => project.short_description) %></span></td> |
31 |
<td align="center"><%= checked_image project.is_public? %></td>
|
|
32 |
<td align="center"><%= format_date(project.created_on) %></td>
|
|
31 |
<td style="text-align: center;"><%= checked_image project.is_public? %></td>
|
|
32 |
<td style="text-align: center;"><%= format_date(project.created_on) %></td>
|
|
33 | 33 |
<td class="buttons"> |
34 | 34 |
<%= link_to(l(:button_archive), { :controller => 'projects', :action => 'archive', :id => project, :status => params[:status] }, :data => {:confirm => l(:text_are_you_sure)}, :method => :post, :class => 'icon icon-lock') unless project.archived? %> |
35 | 35 |
<%= link_to(l(:button_unarchive), { :controller => 'projects', :action => 'unarchive', :id => project, :status => params[:status] }, :method => :post, :class => 'icon icon-unlock') if project.archived? && (project.parent.nil? || !project.parent.archived?) %> |
app/views/projects/settings/_repositories.html.erb (.../app) (working copy) | ||
---|---|---|
16 | 16 |
<%= link_to repository.identifier, |
17 | 17 |
{:controller => 'repositories', :action => 'show',:id => @project, :repository_id => repository.identifier_param} if repository.identifier.present? %> |
18 | 18 |
</td> |
19 |
<td align="center"><%= checked_image repository.is_default? %></td>
|
|
19 |
<td style="text-align: center;"><%= checked_image repository.is_default? %></td>
|
|
20 | 20 |
<td><%=h repository.scm_name %></td> |
21 | 21 |
<td><%=h repository.url %></td> |
22 | 22 |
<td class="buttons"> |
app/views/projects/settings/_boards.html.erb (.../app) (working copy) | ||
---|---|---|
12 | 12 |
<tr class="<%= cycle 'odd', 'even' %>"> |
13 | 13 |
<td style="padding-left: <%= level * 18 %>px;"><%= link_to board.name, project_board_path(@project, board) %></td> |
14 | 14 |
<td><%=h board.description %></td> |
15 |
<td align="center">
|
|
15 |
<td style="text-align: center;">
|
|
16 | 16 |
<% if authorize_for("boards", "edit") %> |
17 | 17 |
<%= reorder_links('board', {:controller => 'boards', :action => 'update', :project_id => @project, :id => board}, :put) %> |
18 | 18 |
<% end %> |
app/views/projects/settings/_activities.html.erb (.../app) (working copy) | ||
---|---|---|
17 | 17 |
<%= ff.hidden_field :parent_id, :value => enumeration.id unless enumeration.project %> |
18 | 18 |
<%= h(enumeration) %> |
19 | 19 |
</td> |
20 |
<td align="center" style="width:15%;"><%= checked_image !enumeration.project %></td>
|
|
20 |
<td style="text-align: center;" style="width:15%;"><%= checked_image !enumeration.project %></td>
|
|
21 | 21 |
<% enumeration.custom_field_values.each do |value| %> |
22 |
<td align="center">
|
|
22 |
<td style="text-align: center;">
|
|
23 | 23 |
<%= custom_field_tag "enumerations[#{enumeration.id}]", value %> |
24 | 24 |
</td> |
25 | 25 |
<% end %> |
26 |
<td align="center" style="width:15%;">
|
|
26 |
<td style="text-align: center;" style="width:15%;">
|
|
27 | 27 |
<%= ff.check_box :active %> |
28 | 28 |
</td> |
29 | 29 |
</tr> |
app/views/gantts/show.html.erb (.../app) (working copy) | ||
---|---|---|
280 | 280 | |
281 | 281 |
<table style="width:100%"> |
282 | 282 |
<tr> |
283 |
<td align="left">
|
|
283 |
<td style="text-align: left;">
|
|
284 | 284 |
<%= link_to_content_update("\xc2\xab " + l(:label_previous), |
285 | 285 |
params.merge(@gantt.params_previous)) %> |
286 | 286 |
</td> |
287 |
<td align="right">
|
|
287 |
<td style="text-align: right;">
|
|
288 | 288 |
<%= link_to_content_update(l(:label_next) + " \xc2\xbb", |
289 | 289 |
params.merge(@gantt.params_next)) %> |
290 | 290 |
</td> |
app/views/enumerations/index.html.erb (.../app) (working copy) | ||
---|---|---|
11 | 11 |
<th style="width:15%;"><%= l(:field_is_default) %></th> |
12 | 12 |
<th style="width:15%;"><%= l(:field_active) %></th> |
13 | 13 |
<th style="width:15%;"></th> |
14 |
<th align="center" style="width:10%;"> </th>
|
|
14 |
<th style="text-align: center; width:10%;"> </th>
|
|
15 | 15 |
</tr></thead> |
16 | 16 |
<% enumerations.each do |enumeration| %> |
17 | 17 |
<tr class="<%= cycle('odd', 'even') %>"> |
app/views/queries/index.html.erb (.../app) (working copy) | ||
---|---|---|
13 | 13 |
<td> |
14 | 14 |
<%= link_to h(query.name), :controller => 'issues', :action => 'index', :project_id => @project, :query_id => query %> |
15 | 15 |
</td> |
16 |
<td align="right">
|
|
16 |
<td style="text-align: right;">
|
|
17 | 17 |
<small> |
18 | 18 |
<% if query.editable_by?(User.current) %> |
19 | 19 |
<%= link_to l(:button_edit), edit_query_path(query), :class => 'icon icon-edit' %> |