OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/stories/_story.html.erb

19 lines
1.0 KiB

<li class="story <%= mark_if_closed(story) %>" id="<%= story_html_id_or_empty(story) %>">
<input type="checkbox" class="checkbox"/>
<div class="spinner"> </div>
<div class="id"><%= issue_link_or_empty(story) %></div>
<div class="tracker_id editable" fieldtype="select" fieldname="tracker_id">
<div class="t"><%= tracker_name_or_empty(story) %></div>
<div class="v"><%= tracker_id_or_empty(story) %></div>
</div>
<div class="subject editable" fieldname="subject"><%=h story.subject %></div>
<div class="status_id editable" fieldtype="select" fieldname="status_id">
<div class="t"><%= status_label_or_default(story) %></div>
<div class="v"><%= status_id_or_default(story) %></div>
</div>
<div class="story_points editable" fieldname="story_points"><%= story_points_or_empty(story) %></div>
<!--div class="description editable" fieldtype="textarea" fieldname="description">
<div class="textile"><%= textile_description_or_empty(story) %></div>
<div class="html"><%= description_or_empty(story) %></div>
</div-->
</li>