To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / my / blocks / _myprojects.html.erb @ 1330:441b66f148b6
History | View | Annotate | Download (562 Bytes)
| 1 |
<% @user_projects = User.current.projects.all(:order => :name) %>
|
|---|---|
| 2 |
|
| 3 |
<% if @user_projects.empty? %>
|
| 4 |
<h3><%=l(:label_my_projects)%></h3> |
| 5 |
<div class="box"> |
| 6 |
<div class="tip"><%= l(:label_have_no_projects)%> <%= link_to(l(:label_project_new), {:controller => 'projects', :action => 'new'}) if User.current.allowed_to?(:add_project, nil, :global => true) %></div> |
| 7 |
</div>
|
| 8 |
<% else %>
|
| 9 |
<h3><%=l(:label_my_projects)%> (<%= @user_projects.count %>)</h3> |
| 10 |
<div class="box"> |
| 11 |
<%=
|
| 12 |
render :partial => 'projects/my', :locals => { :user => User.current }
|
| 13 |
%>
|
| 14 |
</div>
|
| 15 |
<% end %>
|
| 16 |
|