##// END OF EJS Templates
contextual links redesign...
contextual links redesign git-svn-id: http://redmine.rubyforge.org/svn/trunk@93 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r65:96f83cc8f0f0
r90:236c735d08c0
Show More
show.rhtml
72 lines | 2.7 KiB | text/html+ruby | RhtmlLexer
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h2><%=l(:label_overview)%></h2>
Jean-Philippe Lang
Initial commit...
r2
<div class="splitcontentleft">
Jean-Philippe Lang
0.3.0...
r24 <%= simple_format(auto_link(@project.description)) %>
Jean-Philippe Lang
Initial commit...
r2 <ul>
Jean-Philippe Lang
* new report: project activity...
r42 <% unless @project.homepage.empty? %><li><%=l(:field_homepage)%>: <%= auto_link @project.homepage %></li><% end %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <li><%=l(:field_created_on)%>: <%= format_date(@project.created_on) %></li>
Jean-Philippe Lang
0.3 unstable...
r10 <% for custom_value in @custom_values %>
<% if !custom_value.value.empty? %>
Jean-Philippe Lang
git-svn-id: http://redmine.rubyforge.org/svn/trunk@31 e93f8b46-1217-0410-a6f0-8f06a7374b81
r29 <li><%= custom_value.custom_field.name%>: <%= show_value(custom_value) %></li>
Jean-Philippe Lang
0.3 unstable...
r10 <% end %>
<% end %>
Jean-Philippe Lang
Initial commit...
r2 </ul>
<div class="box">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%= image_tag "tracker" %> <%=l(:label_tracker_plural)%></h3>
Jean-Philippe Lang
Initial commit...
r2 <ul>
Jean-Philippe Lang
0.3 unstable...
r10 <% for tracker in @trackers %>
Jean-Philippe Lang
Initial commit...
r2 <li><%= link_to tracker.name, :controller => 'projects', :action => 'list_issues', :id => @project,
:set_filter => 1,
Jean-Philippe Lang
v0.2.0...
r5 "tracker_id" => tracker.id %>:
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <%= issue_count = Issue.count(:conditions => ["project_id=? and tracker_id=? and issue_statuses.is_closed=?", @project.id, tracker.id, false], :include => :status) %>
<%= lwr(:label_open_issues, issue_count) %>
Jean-Philippe Lang
Initial commit...
r2 </li>
<% end %>
</ul>
Jean-Philippe Lang
0.3 unstable...
r10 <% if authorize_for 'projects', 'add_issue' %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 &#187; <%=l(:label_issue_new)%>:
Jean-Philippe Lang
0.3 unstable...
r10 <ul>
<% @trackers.each do |tracker| %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <li><%= link_to tracker.name, :controller => 'projects', :action => 'add_issue', :id => @project, :tracker_id => tracker %></li>
Jean-Philippe Lang
0.3 unstable...
r10 <% end %>
</ul>
<% end %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <center><small>[ <%= link_to l(:label_issue_view_all), :controller => 'projects', :action => 'list_issues', :id => @project, :set_filter => 1 %> ]</small></center>
Jean-Philippe Lang
Initial commit...
r2 </div>
</div>
<div class="splitcontentright">
<div class="box">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%= image_tag "users" %> <%=l(:label_member_plural)%></h3>
Jean-Philippe Lang
Initial commit...
r2 <% for member in @members %>
<%= link_to_user member.user %> (<%= member.role.name %>)<br />
<% end %>
</div>
Jean-Philippe Lang
v0.2.0...
r5 <% if @subprojects %>
<div class="box">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%= image_tag "projects" %> <%=l(:label_subproject_plural)%></h3>
Jean-Philippe Lang
v0.2.0...
r5 <% for subproject in @subprojects %>
<%= link_to subproject.name, :action => 'show', :id => subproject %><br />
<% end %>
</div>
<% end %>
Jean-Philippe Lang
Initial commit...
r2 <div class="box">
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <h3><%=l(:label_news_latest)%></h3>
Jean-Philippe Lang
v0.2.0...
r5 <% for news in @news %>
Jean-Philippe Lang
notice messages translation...
r15 <p><b><%= news.title %></b> <small>(<%= link_to_user news.author %> <%= format_time(news.created_on) %>)</small><br />
Jean-Philippe Lang
0.3 unstable...
r10 <%= news.summary %>
Jean-Philippe Lang
notice messages translation...
r15 <small>[<%= link_to l(:label_read), :controller => 'news', :action => 'show', :id => news %>]</small></p>
Jean-Philippe Lang
Initial commit...
r2 <hr />
<% end %>
Jean-Philippe Lang
Localization plugin removed (replaced with GLoc)...
r12 <center><small>[ <%= link_to l(:label_news_view_all), :controller => 'projects', :action => 'list_news', :id => @project %> ]</small></center>
Jean-Philippe Lang
Initial commit...
r2 </div>
</div>