Mercurial > hg > soundsoftware-site
view .svn/pristine/86/86d46b11f53bf924d634fb6a310d55c059a3a986.svn-base @ 1080:5bd8c86cfa6a issue_540
Makes the Publication model act as an activity; overloading the default ActivitiesController#index view in the Bibliography Plugin in order to differentiate Publications from the other event types.
* Known issues:
** route to /activities is not working (only to /activity);
** publication cache needs to be implemented in the model, not in the helper;
** when a publication is added to n projects, n events are created (all with the same content).
author | luisf <luis.figueira@eecs.qmul.ac.uk> |
---|---|
date | Thu, 22 Nov 2012 16:51:23 +0000 |
parents | cbb26bc654de |
children |
line wrap: on
line source
<div class="contextual"> <%= link_to l(:label_issue_status_new), new_issue_status_path, :class => 'icon icon-add' %> <%= link_to(l(:label_update_issue_done_ratios), update_issue_done_ratio_issue_statuses_path, :class => 'icon icon-multiple', :method => 'post', :confirm => l(:text_are_you_sure)) if Issue.use_status_for_done_ratio? %> </div> <h2><%=l(:label_issue_status_plural)%></h2> <table class="list"> <thead><tr> <th><%=l(:field_status)%></th> <% if Issue.use_status_for_done_ratio? %> <th><%=l(:field_done_ratio)%></th> <% end %> <th><%=l(:field_is_default)%></th> <th><%=l(:field_is_closed)%></th> <th><%=l(:button_sort)%></th> <th></th> </tr></thead> <tbody> <% for status in @issue_statuses %> <tr class="<%= cycle("odd", "even") %>"> <td><%= link_to h(status.name), edit_issue_status_path(status) %></td> <% if Issue.use_status_for_done_ratio? %> <td align="center"><%= h status.default_done_ratio %></td> <% end %> <td align="center"><%= checked_image status.is_default? %></td> <td align="center"><%= checked_image status.is_closed? %></td> <td align="center" style="width:15%;"><%= reorder_links('issue_status', {:action => 'update', :id => status}, :put) %></td> <td class="buttons"> <%= link_to(l(:button_delete), issue_status_path(status), :method => :delete, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') %> </td> </tr> <% end %> </tbody> </table> <p class="pagination"><%= pagination_links_full @issue_status_pages %></p> <% html_title(l(:label_issue_status_plural)) -%>