Sha256: 205f7d192cc8adc8a272da64c8ba669b603bef7a9cb30964d516650153d0db4d

Contents?: true

Size: 741 Bytes

Versions: 1

Compression:

Stored size: 741 Bytes

Contents

      <li class="stuff-to-do-item <%= issue.css_classes if issue.respond_to?(:css_classes) %> <%= issue_counter.odd? ? "odd" : "even" %>" id="stuff_<%= issue.id %>">
        <div class="issue-details">
        <%= link_to(image_tag('ticket.png'), :controller => 'issues', :action => 'show', :id => issue) %>
        #<%= h(issue.id) %>
        - <%= h(issue.project.name) %> -
        <%= h(issue.subject) %>
        </div>

        <% if issue.estimated_hours && issue.estimated_hours > 0 %>
        <div class="estimate"><%= h(l_hours(issue.estimated_hours)) %> &nbsp;</div>
        <% end %>

        <div class="progress"><%= progress_bar(issue.done_ratio, :width => '100%') %></div>

        <div style="clear:left;"></div>
      </li>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stuff_to_do_plugin-0.4.0 app/views/stuff_to_do/_issue.html.erb