To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / vendor / plugins / redmine_tags / app / views / projects / _my_projects.rhtml @ 784:4b46e861a43a
History | View | Annotate | Download (526 Bytes)
| 1 |
<% if @myproj_status=="true" %>
|
|---|---|
| 2 |
<fieldset id="my_projects_fieldset" class="collapsible"> |
| 3 |
<legend onclick="toggleFieldsetWithState(this);"><%= l(:label_my_projects) %></legend> |
| 4 |
<% else %>
|
| 5 |
<fieldset id="my_projects_fieldset" class="collapsible collapsed"> |
| 6 |
<legend onclick="toggleFieldsetWithState(this);"><%= l(:label_my_projects) %></legend> |
| 7 |
<div style="display: none;"> |
| 8 |
<% end%>
|
| 9 |
<% if @user_projects %>
|
| 10 |
<div>
|
| 11 |
<%= render_my_project_hierarchy(@user_projects)%>
|
| 12 |
</div>
|
| 13 |
<% end %>
|
| 14 |
</fieldset>
|