1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 17:31:14 +00:00
redmine/app/views/issues/_subtasks.html.erb
Go MAEDA 001252d966 Move subtasks section on issues show view into a separate partial (#35671).
Patch by Mischa The Evil.


git-svn-id: http://svn.redmine.org/redmine/trunk@21190 e93f8b46-1217-0410-a6f0-8f06a7374b81
2021-08-17 09:42:54 +00:00

13 lines
389 B
Plaintext

<div class="contextual">
<%= link_to_new_subtask(@issue) if User.current.allowed_to?(:manage_subtasks, @project) %>
</div>
<p>
<strong><%=l(:label_subtask_plural)%></strong>
<%= render_descendants_stats(@issue) unless @issue.leaf? %>
</p>
<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do %>
<%= render_descendants_tree(@issue) unless @issue.leaf? %>
<% end %>