% if @project.issue_categories.any? %>
<%= l(:label_issue_category) %> | <%= l(:field_assigned_to) %> | <% for category in @project.issue_categories %> <% unless category.new_record? %> | |
---|---|---|---|
<%=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' %> |
<%= l(:label_no_data) %>
<% end %><%= link_to_if_authorized l(:label_issue_category_new), :controller => 'projects', :action => 'add_issue_category', :id => @project %>