##// END OF EJS Templates
Added atom feed on the new cross-project issue list....
Added atom feed on the new cross-project issue list. git-svn-id: http://redmine.rubyforge.org/svn/trunk@686 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r663:603e11d7a5aa
r675:c68dac7e9ad0
Show More
list.rhtml
30 lines | 1.1 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <h2><%=l(:label_project_plural)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
css cleaning...
r105 <table class="list">
<thead><tr>
Jean-Philippe Lang
Added parent project name (if it exists) on project list and project overview....
r401 <%= sort_header_tag("#{Project.table_name}.name", :caption => l(:label_project)) %>
<th><%=l(:field_parent)%></th>
<%= sort_header_tag("#{Project.table_name}.created_on", :caption => l(:field_created_on)) %>
Jean-Philippe Lang
css cleaning...
r105 </tr></thead>
<tbody>
Jean-Philippe Lang
v0.2.0...
r5 <% for project in @projects %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <td>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <%= link_to project.name, {:action => 'show', :id => project}, :class => (User.current.member_of?(project) ? "icon icon-fav" : "") %><br />
Jean-Philippe Lang
Textilized project descriptions on project list and home page....
r645 <%= textilizable project.description, :project => project %>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 </td>
Jean-Philippe Lang
Added parent project name (if it exists) on project list and project overview....
r401 <td><%= link_to(project.parent.name, :action => 'show', :id => project.parent) unless project.parent.nil? %></td>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 <td align="center"><%= format_date(project.created_on) %></td>
Jean-Philippe Lang
Initial commit...
r2 </tr>
<% end %>
Jean-Philippe Lang
css cleaning...
r105 </tbody>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330 </table>
Jean-Philippe Lang
Merged 0.6 branch into trunk....
r663 <% if User.current.logged? %>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 <div class="contextual">
<span class="icon icon-fav"><%= l(:label_my_projects) %></span>
</div>
<% end %>
Jean-Philippe Lang
Initial commit...
r2 <%= pagination_links_full @project_pages %>
Jean-Philippe Lang
Projects menu item now shows the list of public projects and projects for which the user is a member (marked with a star)....
r457 [ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]