##// END OF EJS Templates
Textilized project descriptions on project list and home page....
Textilized project descriptions on project list and home page. Added jsToolbar on project form. git-svn-id: http://redmine.rubyforge.org/svn/trunk@651 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r546:413247ee5b16
r645:7b366758fdc4
Show More
_issuesreportedbyme.rhtml
9 lines | 616 B | text/html+ruby | RhtmlLexer
/ app / views / my / blocks / _issuesreportedbyme.rhtml
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <h3><%=l(:label_reported_issues)%></h3>
<% reported_issues = Issue.find(:all,
Jean-Philippe Lang
Added the ability to archive projects:...
r546 :conditions => ["author_id=? AND #{Project.table_name}.status=#{Project::STATUS_ACTIVE}", user.id],
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 :limit => 10,
:include => [ :status, :project, :tracker ],
Jean-Philippe Lang
fixed #9308 table_name pre/suffix support...
r334 :order => "#{Issue.table_name}.updated_on DESC") %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <%= render :partial => 'issues/list_simple', :locals => { :issues => reported_issues } %>
<% if reported_issues.length > 0 %>
<p><%=lwr(:label_last_updates, reported_issues.length)%></p>
Jean-Philippe Lang
- new controller "myController"...
r60 <% end %>