diff options
Diffstat (limited to 'app/views/projects/show.rhtml')
-rw-r--r-- | app/views/projects/show.rhtml | 104 |
1 files changed, 52 insertions, 52 deletions
diff --git a/app/views/projects/show.rhtml b/app/views/projects/show.rhtml index 4c9e4e04a..b38eceaac 100644 --- a/app/views/projects/show.rhtml +++ b/app/views/projects/show.rhtml @@ -1,55 +1,55 @@ -<h2><%=l(:label_overview)%></h2>
-
-<div class="splitcontentleft">
- <%= simple_format(auto_link(h(@project.description))) %>
- <ul>
- <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
- <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
- <% for custom_value in @custom_values %>
- <% if !custom_value.value.empty? %>
- <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li>
- <% end %>
- <% end %>
- </ul>
-
- <div class="box">
- <div class="contextual">
- <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %>
- </div>
- <h3 class="icon22 icon22-tracker"><%=l(:label_tracker_plural)%></h3>
- <ul>
- <% for tracker in @trackers %>
- <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
- :set_filter => 1,
- "tracker_id" => tracker.id %>:
- <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %>
- <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li>
- <% end %>
- </ul>
- <p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p>
+<h2><%=l(:label_overview)%></h2> + +<div class="splitcontentleft"> + <%= simple_format(auto_link(h(@project.description))) %> + <ul> + <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %> + <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li> + <% for custom_value in @custom_values %> + <% if !custom_value.value.empty? %> + <li><%= custom_value.custom_field.name%>: <%=h show_value(custom_value) %></li> + <% end %> + <% end %> + </ul> + + <div class="box"> + <div class="contextual"> + <%= render :partial => 'issues/add_shortcut', :locals => {:trackers => @trackers } %> + </div> + <h3 class="icon22 icon22-tracker"><%=l(:label_tracker_plural)%></h3> + <ul> + <% for tracker in @trackers %> + <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project, + :set_filter => 1, + "tracker_id" => tracker.id %>: + <%= @open_issues_by_tracker[tracker] || 0 %> <%= lwr(:label_open_issues, @open_issues_by_tracker[tracker] || 0) %> + <%= l(:label_on) %> <%= @total_issues_by_tracker[tracker] || 0 %></li> + <% end %> + </ul> + <p class="textcenter"><small><%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %></small></p> </div> -</div>
-
-<div class="splitcontentright">
- <div class="box">
- <h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3>
- <% for member in @members %>
- <%= link_to_user member.user %> (<%= member.role.name %>)<br />
- <% end %>
- </div>
-
- <% if @subprojects %>
- <div class="box">
- <h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3>
- <% for subproject in @subprojects %>
- <%= link_to subproject.name, :action => 'show', :id => subproject %><br />
- <% end %>
- </div>
- <% end %>
-
- <div class="box">
- <h3><%=l(:label_news_latest)%></h3>
+</div> + +<div class="splitcontentright"> + <div class="box"> + <h3 class="icon22 icon22-users"><%=l(:label_member_plural)%></h3> + <% for member in @members %> + <%= link_to_user member.user %> (<%= member.role.name %>)<br /> + <% end %> + </div> + + <% if @subprojects %> + <div class="box"> + <h3 class="icon22 icon22-projects"><%=l(:label_subproject_plural)%></h3> + <% for subproject in @subprojects %> + <%= link_to subproject.name, :action => 'show', :id => subproject %><br /> + <% end %> + </div> + <% end %> + + <div class="box"> + <h3><%=l(:label_news_latest)%></h3> <%= render :partial => 'news/news', :collection => @news %> - <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p>
- </div>
+ <p class="textcenter"><small><%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %></small></p> + </div> </div>
\ No newline at end of file |