##// END OF EJS Templates
Prevent mass-assignment when adding/updating an issue category (#10390)....
Prevent mass-assignment when adding/updating an issue category (#10390). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9131 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r8903:e6b9ddad18fb
r9011:460239d1f9ee
Show More
reminder.html.erb
9 lines | 378 B | text/plain | TextLexer
/ app / views / mailer / reminder.html.erb
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <p><%= l(:mail_body_reminder, :count => @issues.size, :days => @days) %></p>
Jean-Philippe Lang
Adds a rake task to send reminders. An email is sent to each user with a list of the issues due in the next days, if any....
r1445
<ul>
<% @issues.each do |issue| -%>
Jean-Philippe Lang
Mailer#url_for not called in views with Rails 3.1....
r8903 <li><%=h issue.project %> - <%=link_to(h("#{issue.tracker} ##{issue.id}"), :controller => 'issues', :action => 'show', :id => issue, :only_path => false)%>: <%=h issue.subject %></li>
Jean-Philippe Lang
Adds a rake task to send reminders. An email is sent to each user with a list of the issues due in the next days, if any....
r1445 <% end -%>
</ul>
<p><%= link_to l(:label_issue_view_all), @issues_url %></p>