##// END OF EJS Templates
contextual links redesign...
contextual links redesign git-svn-id: http://redmine.rubyforge.org/svn/trunk@93 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r65:96f83cc8f0f0
r90:236c735d08c0
Show More
list.rhtml
19 lines | 704 B | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_public_projects)%></h2>
Jean-Philippe Lang
Initial commit...
r2
Jean-Philippe Lang
tables and forms redesign,...
r19 <table class="listTableContent">
Jean-Philippe Lang
Initial commit...
r2 <tr class="ListHead">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= sort_header_tag('name', :caption => l(:label_project)) %>
<th><%=l(:field_description)%></th>
<%= sort_header_tag('created_on', :caption => l(:field_created_on)) %>
Jean-Philippe Lang
Initial commit...
r2 </tr>
Jean-Philippe Lang
v0.2.0...
r5 <% for project in @projects %>
<tr class="<%= cycle("odd", "even") %>">
Jean-Philippe Lang
Initial commit...
r2 <td><%= link_to project.name, :action => 'show', :id => project %>
Jean-Philippe Lang
0.3 unstable...
r10 <td><%= project.description %>
Jean-Philippe Lang
Initial commit...
r2 <td align="center"><%= format_date(project.created_on) %>
</tr>
<% end %>
</table>
<%= pagination_links_full @project_pages %>
[ <%= @project_pages.current.first_item %> - <%= @project_pages.current.last_item %> / <%= @project_count %> ]