Revision 1297:0a574315af3e .svn/pristine/1e

View differences:

.svn/pristine/1e/1e36d3b0b9a7b1dcdb385f344cf25506fbe7bce9.svn-base
1
<h2><%=l(:label_auth_source)%> (<%= h(@auth_source.auth_method_name) %>)</h2>
2

  
3
<%= form_tag({:action => 'update', :id => @auth_source}, :method => :put, :class => "tabular") do %>
4
  <%= render :partial => auth_source_partial_name(@auth_source) %>
5
  <%= submit_tag l(:button_save) %>
6
<% end %>
.svn/pristine/1e/1e8f4706c992f648980e1bbef5b267351fd0e7ee.svn-base
1
<table class="list">
2
  <thead><tr>
3
    <th width="30%"><%=l(:field_name)%></th>
4
    <th><%=l(:field_field_format)%></th>
5
    <th><%=l(:field_is_required)%></th>
6
    <% if tab[:name] == 'IssueCustomField' %>
7
      <th><%=l(:field_is_for_all)%></th>
8
      <th><%=l(:label_used_by)%></th>
9
    <% end %>
10
    <th><%=l(:button_sort)%></th>
11
    <th width="10%"></th>
12
  </tr></thead>
13
  <tbody>
14
  <% (@custom_fields_by_type[tab[:name]] || []).sort.each do |custom_field| -%>
15
    <tr class="<%= cycle("odd", "even") %>">
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>
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>
22
      <% end %>
23
      <td align="center" style="width:15%;"><%= reorder_links('custom_field', {:action => 'update', :id => custom_field}, :put) %></td>
24
      <td class="buttons">
25
        <%= delete_link custom_field_path(custom_field) %>
26
      </td>
27
    </tr>
28
  <% end; reset_cycle %>
29
  </tbody>
30
</table>
31

  
32
<p><%= link_to l(:label_custom_field_new), new_custom_field_path(:type => tab[:name]), :class => 'icon icon-add' %></p>
.svn/pristine/1e/1ec171c5d371f7815766568fcf1c2d5feb1a3958.svn-base
1
<%= "#{issue.tracker.name} ##{issue.id}: #{issue.subject}" %>
2
<%= issue_url %>
3

  
4
* <%=l(:field_author)%>: <%= issue.author %>
5
* <%=l(:field_status)%>: <%= issue.status %>
6
* <%=l(:field_priority)%>: <%= issue.priority %>
7
* <%=l(:field_assigned_to)%>: <%= issue.assigned_to %>
8
* <%=l(:field_category)%>: <%= issue.category %>
9
* <%=l(:field_fixed_version)%>: <%= issue.fixed_version %>
10
<% issue.custom_field_values.each do |c| %>* <%= c.custom_field.name %>: <%= show_value(c) %>
11
<% end -%>
12
----------------------------------------
13
<%= issue.description %>

Also available in: Unified diff