summaryrefslogtreecommitdiffstats
path: root/app/views/projects/settings/_issue_categories.rhtml
blob: bad330e20e42e67cd1ebb04b293f7e531baf1263 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<table class="list">
	<thead>
	<th><%= l(:label_issue_category) %></th>
	<th><%= l(:field_assigned_to) %></th>
	<th style="width:15%"></th>
	<th style="width:15%"></th>
	</thead>
	<tbody>
<% for category in @project.issue_categories %>
	<% unless category.new_record? %>
	<tr class="<%= cycle 'odd', 'even' %>">
    <td><%=h(category.name) %></td>
    <td><%=h(category.assigned_to.name) if category.assigned_to %></td>
    <td align="center"><small><%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %></small></td>
    <td align="center"><small><%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :confirm => l(:text_are_you_sure), :method => :post, :class => 'icon icon-del' %></small></td>
	</tr>
	<% end %>
<% end %>
    </tbody>
</table>
&nbsp;
<p><%= link_to_if_authorized l(:label_issue_category_new), :controller => 'projects', :action => 'add_issue_category', :id => @project %></p>