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 / projects / _latest.html.erb @ 1006:4ffe9098c16c

History | View | Annotate | Download (563 Bytes)

1 1006:4ffe9098c16c chris
    <ul>
2
    <% for project in @projects %>
3
      <% @project = project %>
4
        <li class="latest">
5
        <span class="title">
6
          <% if !project.root? %>
7
            <% project.ancestors.each do |p| %>
8
              <%= h(p) %>&nbsp;&#187;
9
            <% end %>
10
          <% end %>
11
        <%= link_to_project project %>
12
        </span>
13
        <% if !project.is_public? %>
14
           <span class="private"><%= l(:field_is_private) %></span>
15
        <% end %>
16
        <span class="time"><%= format_time(project.created_on)%></span>
17
        <%= render_project_short_description project %>
18
      </li>
19
    <% end %>
20
    <% @project = nil %>
21
    </ul>