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 @ 1303:537026b96b8b

History | View | Annotate | Download (526 Bytes)

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