<% if @project.issue_categories.any? %> <% for category in @project.issue_categories %> <% unless category.new_record? %> <% end %> <% end %>
<%= l(:label_issue_category) %> <%= l(:field_assigned_to) %>
<%=h(category.name) %> <%=h(category.assigned_to.name) if category.assigned_to %> <%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %> <%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %>
<% else %>

<%= l(:label_no_data) %>

<% end %>

<%= link_to_if_authorized l(:label_issue_category_new), :controller => 'projects', :action => 'add_issue_category', :id => @project %>