2008年1月15日火曜日

Redmineに機能追加(終了済み Issue をカレンダーで取り消し線)


--------------------------------
app/views/common/_calendar.rhtml
--------------------------------
<%= h("#{i.project.name} -") unless @project && @project == i.project %>
<%= link_to_issue i %>: <!-- 元の処理 %= h(truncate(i.subject, 30)) % -->
<!-- 追加開始 -->
<%= '<del>' if i.closed? %><%= h(truncate(i.subject, 30)) %><%= '</del>' if i.closed? %>
<!-- ここまで -->
<span class="tip"><%= render_issue_tooltip i %></span>