To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / mailer / reminder.text.html.rhtml @ 441:cbce1fd3b1b7

History | View | Annotate | Download (375 Bytes)

1
<p><%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %></p>
2

    
3
<ul>
4
<% @issues.each do |issue| -%>
5
  <li><%=h issue.project %> - <%=link_to("#{issue.tracker} ##{issue.id}", :controller => 'issues', :action => 'show', :id => issue, :only_path => false)%>: <%=h issue.subject %></li>
6
<% end -%>
7
</ul>
8

    
9
<p><%= link_to l(:label_issue_view_all), @issues_url %></p>